;Kollmorgen AKD2G Servo Family
;10/3/2020 Rev C

;Kollmorgen AKD2G servo drives come in single and dual axis versions.
;Commands specific to axis 1 start with AXIS1. and for axis 2 AXIS2.
;This file inludes definitions for both AXIS1 and AXIS2 parameters.
;However, the polled values in this definition file are only a small sub-set of AXIS1, common ones.
;Note that older Kollmorgen AKD first generation drives have different commands--this definition won't work for them.

;Telnet port 23 Interface
;This device is not SCPI and so *IDN? returns "Error: [0085] Command was not found."
;This file defines SCPI like commands for each parameter/command.

;Need to use the verifyDevice command to get model number and decode single/dual axis.
;This deviced file handles single and dual axis AKD2G drives.
;When connecting to a single axis AKD2G the AXIS2 commands are removed.

#metadef
#idString Kollmorgen,AKD2GS,
#name Kollmorgen AKD2G Single Servo
#handle AKD2GS
#verifyDevice "AKD2G-Single" SingleAxis?
#remove #cmdSetup buttonsOn Axis2_Enable
#removeline #scpiCmd AXIS2.
#removeline #interface setAxis2
#removeline #interface getAxis2

#metadef
#idString Kollmorgen,AKD2GD,
#name Kollmorgen AKD2G Dual Servo
#handle AKD2GD
#verifyDevice "AKD2G-Dual" SingleAxis?

#meta

#idString Kollmorgen,AKD2GD,
#name Kollmorgen AKD2G Dual Servo
#handle AKD2GD
#port 23
#eol \r\n
#driver ascii
#author gby
#notes This device file supports Kollmorgen AKD second generation single and dual axis servo drives.  All drive model numbers starting with AKD2G- like AKD2G-SPE-7V12S-A1DX-0000 are supported.  See Kollmorgen AKD1G device file for supporting models starting with AKD-.

; A list of possible column names with unit and formatter (SI, Time, Int, D0..D6) 
; Format: #value ColumnName Unit Format {Selector}
; Selector is only used when column layout varies with mode, this often require the use of #cmdMode
#value CH1 - D3
#value CH2 - D3
#value CH3 - D3
#value CH4 - D3
#value CH5 - D3
#value CH6 - D3

; How to poll for data, this is used for table and #values?
; a #askMode, #cmdMode and #prepareSample is used before this is string is used.--
; Number of returned values must match number of columns defined with #value
; This is a single line command
#askValues REC.TRIG; REC.DATA?

; Format of answer: f=float, u=remove trailing letters, x=skip, *=Zero upper case values if this value is 0
#askValuesReadFormat ffffff

; There must be a line for each of the original device commands that will be used, converting it to a similar SCPI command
;#scpiCmd init tx command to init
;#scpiCmd values? txrx? command to read current value or values. It is possible to define value1?, value2?, etc. and then use them all with a ; between in the #askValues statement.

; Mode change have a longer delay on reading values (seconds)
#modeChangeDelay 10
; String to ask about actual meter mode, it is mostly used for DMM's
; This is a single line command
;#askMode 
; When one of these commands are used through the command interface a new configuration will be done before using #askMode
; Only one word for each #mayModifyMode
; Specify command without initial colon and in the shortest possible form
;#mayModifyMode 
; Prepare the meter to response to #askValues
;#prepareSample arm:sour imm;:arm:count 1;:trig:sour imm;:trig:count 1;:trig:samp:count 1;init

; Initial commands to meter when establishing connection, used to disable local control
; Set recorder to full sample rate, immediate trigger, take only 1 point, send as decimal numbers.
; Leave REC.CHx channels selections at whatever is in the drive.
#initCmd  REC.GAP 1;REC.TRIGTYPE 0;REC.NUMPOINTS 1;REC.RETRIEVEFRMT 0

; Final command to meter before breaking connection, used to restore local control
#finalCmd  REC.RETRIEVEFRMT 1

; Used to turn output off for power supplies, generators and electronic loads
;Also AXIS2.DIS?; for dual axis.  Delay at end add ;[xxx] for xxx mSec delay after.
#outputOff AXIS1.DIS?

;*************Special Commands Combining/Processing Atomic Commands

;Special command to support the verifyDevice command.  Returns string "AKD2G-Dual" or "AKD2G-Single"
;for (not single)/(single) axis.
;AKD2G native command DRV.INFO returns lots of info.  But, TestController only gets/takes first line.
;Example first line for a single axis unit:
;   Drive model           : AKD2G-SPE-7V12S-A1DX-0000
;If the pattern in the middle is ...V..S..., then single axis, else not.
;Below regEx will match an AKD2G single axis model Drive.*AKD2G.*V..S

#scpiCmd SingleAxis? txrx? DRV.INFO
:readmath: match(value,"Drive.*AKD2G-...-.V..S-.*")
:readmath: getElement("AKD2G-Dual AKD2G-Single",value)

#scpiCmd REC.DATA? txrxn? 2 REC.RETRIEVEDATA 0
:readmath: getElement(value,1,"\n")

#scpiCmd getDeviceSW? txrxn? 24 DRV.INFO
:readmath: getMatch(getMatch(value, "(?<=Firmware\\sVersion).*"), "M_.*")

#scpiCmd getDeviceSN? txrxn? 24 DRV.INFO
:readmath: getMatch(value, "(?<=serial number : ).*")

#scpiCmd getDef? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: value+" "

#scpiCmd getDefCH1? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: getElement(value,0)
:readmath: value+" "

#scpiCmd getDefCH2? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: getElement(value,1)
:readmath: value+" "

#scpiCmd getDefCH3? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: getElement(value,2)
:readmath: value+" "

#scpiCmd getDefCH4? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: getElement(value,3)
:readmath: value+" "

#scpiCmd getDefCH5? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: getElement(value,4)
:readmath: value+" "

#scpiCmd getDefCH6? txrxn? 3 REC.RETRIEVEHDR
:readmath: getMatch(value,"(?<=1,1\\s).*")
:readmath: getElement(value,5)


#scpiCmd getUnitsCH1? txrxn? 3 REC.RETRIEVEHDR
:readmath: getElement(value,0)
:readmath: getMatch(value,"(?<=\\[).*\\b")

#scpiCmd getUnitsCH2? txrxn? 3 REC.RETRIEVEHDR
:readmath: getElement(value,1)
:readmath: getMatch(value,"(?<=\\[).*\\b")

#scpiCmd getUnitsCH3? txrxn? 3 REC.RETRIEVEHDR
:readmath: getElement(value,2)
:readmath: getMatch(value,"(?<=\\[).*\\b")

#scpiCmd getUnitsCH4? txrxn? 3 REC.RETRIEVEHDR
:readmath: getElement(value,3)
:readmath: getMatch(value,"(?<=\\[).*\\b")

#scpiCmd getUnitsCH5? txrxn? 3 REC.RETRIEVEHDR
:readmath: getElement(value,4)
:readmath: getMatch(value,"(?<=\\[).*\\b")

#scpiCmd getUnitsCH6? txrxn? 3 REC.RETRIEVEHDR
:readmath: getElement(value,5)
:readmath: getMatch(value,"(?<=\\[).*\\b")

;*************Below are Common/unit Commands

#scpiCmd AIN1.ZERO txrx AIN1.ZERO
#scpiCmd AIN2.ZERO txrx AIN2.ZERO
#scpiCmd DRV.BLINKDISPLAY txrx DRV.BLINKDISPLAY
#scpiCmd DRV.CLRFAULTS txrx DRV.CLRFAULTS
#scpiCmd DRV.DIS txrx DRV.DIS
#scpiCmd DRV.LOGOUT txrx DRV.LOGOUT
#scpiCmd DRV.NVDUMP txrx DRV.NVDUMP
#scpiCmd DRV.NVLOAD txrx DRV.NVLOAD
#scpiCmd DRV.NVSAVE txrx DRV.NVSAVE
#scpiCmd DRV.RSTVAR txrx DRV.RSTVAR
#scpiCmd DRV.STOP txrx DRV.STOP
#scpiCmd IP.RESET txrx IP.RESET
#scpiCmd MODBUS.CLRERRORS txrx MODBUS.CLRERRORS
#scpiCmd MW.MODEL6.ERASE txrx MW.MODEL6.ERASE
#scpiCmd REC.OFF txrx REC.OFF
#scpiCmd REC.TRIG txrx REC.TRIG
#scpiCmd SFA1.CLRFAULTS txrx SFA1.CLRFAULTS
#scpiCmd SFA1.INIT txrx SFA1.INIT
#scpiCmd SFA1.SHUTDOWN txrx SFA1.SHUTDOWN
#scpiCmd SFA2.CLRFAULTS txrx SFA2.CLRFAULTS
#scpiCmd SFA2.INIT txrx SFA2.INIT
#scpiCmd SFA2.SHUTDOWN txrx SFA2.SHUTDOWN

;*************Below are Axis 1 Commands

#scpiCmd AXIS1.CLRFAULTS txrx AXIS1.CLRFAULTS
#scpiCmd AXIS1.DIS txrx AXIS1.DIS
#scpiCmd AXIS1.EN txrx AXIS1.EN
#scpiCmd AXIS1.GEAR.MOVE txrx AXIS1.GEAR.MOVE
#scpiCmd AXIS1.HOME.CLEAR txrx AXIS1.HOME.CLEAR
#scpiCmd AXIS1.HOME.MOVE txrx AXIS1.HOME.MOVE
#scpiCmd AXIS1.HOME.SET txrx AXIS1.HOME.SET
#scpiCmd AXIS1.JOG.MOVEN txrx AXIS1.JOG.MOVEN
#scpiCmd AXIS1.JOG.MOVEP txrx AXIS1.JOG.MOVEP
#scpiCmd AXIS1.MT.CLEARALL txrx AXIS1.MT.CLEARALL
#scpiCmd AXIS1.MT.CONTINUE txrx AXIS1.MT.CONTINUE
#scpiCmd AXIS1.SM.MOVE txrx AXIS1.SM.MOVE
#scpiCmd AXIS1.STOP txrx AXIS1.STOP
#scpiCmd AXIS1.WS.ARM txrx AXIS1.WS.ARM
#scpiCmd AXIS1.WS.DISARM txrx AXIS1.WS.DISARM

;*************Below are Axis 2 Commands

#scpiCmd AXIS2.CLRFAULTS txrx AXIS2.CLRFAULTS
#scpiCmd AXIS2.DIS txrx AXIS2.DIS
#scpiCmd AXIS2.EN txrx AXIS2.EN
#scpiCmd AXIS2.GEAR.MOVE txrx AXIS2.GEAR.MOVE
#scpiCmd AXIS2.HOME.CLEAR txrx AXIS2.HOME.CLEAR
#scpiCmd AXIS2.HOME.MOVE txrx AXIS2.HOME.MOVE
#scpiCmd AXIS2.HOME.SET txrx AXIS2.HOME.SET
#scpiCmd AXIS2.JOG.MOVEN txrx AXIS2.JOG.MOVEN
#scpiCmd AXIS2.JOG.MOVEP txrx AXIS2.JOG.MOVEP
#scpiCmd AXIS2.MT.CLEARALL txrx AXIS2.MT.CLEARALL
#scpiCmd AXIS2.MT.CONTINUE txrx AXIS2.MT.CONTINUE
#scpiCmd AXIS2.SM.MOVE txrx AXIS2.SM.MOVE
#scpiCmd AXIS2.STOP txrx AXIS2.STOP
#scpiCmd AXIS2.WS.ARM txrx AXIS2.WS.ARM
#scpiCmd AXIS2.WS.DISARM txrx AXIS2.WS.DISARM


;*************Below are Read Only common/unit parameters

#scpiCmd ACBIQ1.OUTPUT? txrx? ACBIQ1.OUTPUT
#scpiCmd ACBIQ3.OUTPUT? txrx? ACBIQ3.OUTPUT
#scpiCmd ACBIQ4.OUTPUT? txrx? ACBIQ4.OUTPUT
#scpiCmd ACBIQ5.OUTPUT? txrx? ACBIQ5.OUTPUT
#scpiCmd ACTION.RUNNING? txrx? ACTION.RUNNING
#scpiCmd ACTION1.RUNCOUNT? txrx? ACTION1.RUNCOUNT
#scpiCmd ACTION10.RUNCOUNT? txrx? ACTION10.RUNCOUNT
#scpiCmd ACTION11.RUNCOUNT? txrx? ACTION11.RUNCOUNT
#scpiCmd ACTION12.RUNCOUNT? txrx? ACTION12.RUNCOUNT
#scpiCmd ACTION13.RUNCOUNT? txrx? ACTION13.RUNCOUNT
#scpiCmd ACTION14.RUNCOUNT? txrx? ACTION14.RUNCOUNT
#scpiCmd ACTION15.RUNCOUNT? txrx? ACTION15.RUNCOUNT
#scpiCmd ACTION16.RUNCOUNT? txrx? ACTION16.RUNCOUNT
#scpiCmd ACTION17.RUNCOUNT? txrx? ACTION17.RUNCOUNT
#scpiCmd ACTION18.RUNCOUNT? txrx? ACTION18.RUNCOUNT
#scpiCmd ACTION19.RUNCOUNT? txrx? ACTION19.RUNCOUNT
#scpiCmd ACTION2.RUNCOUNT? txrx? ACTION2.RUNCOUNT
#scpiCmd ACTION20.RUNCOUNT? txrx? ACTION20.RUNCOUNT
#scpiCmd ACTION21.RUNCOUNT? txrx? ACTION21.RUNCOUNT
#scpiCmd ACTION22.RUNCOUNT? txrx? ACTION22.RUNCOUNT
#scpiCmd ACTION23.RUNCOUNT? txrx? ACTION23.RUNCOUNT
#scpiCmd ACTION24.RUNCOUNT? txrx? ACTION24.RUNCOUNT
#scpiCmd ACTION25.RUNCOUNT? txrx? ACTION25.RUNCOUNT
#scpiCmd ACTION26.RUNCOUNT? txrx? ACTION26.RUNCOUNT
#scpiCmd ACTION27.RUNCOUNT? txrx? ACTION27.RUNCOUNT
#scpiCmd ACTION28.RUNCOUNT? txrx? ACTION28.RUNCOUNT
#scpiCmd ACTION29.RUNCOUNT? txrx? ACTION29.RUNCOUNT
#scpiCmd ACTION3.RUNCOUNT? txrx? ACTION3.RUNCOUNT
#scpiCmd ACTION30.RUNCOUNT? txrx? ACTION30.RUNCOUNT
#scpiCmd ACTION31.RUNCOUNT? txrx? ACTION31.RUNCOUNT
#scpiCmd ACTION32.RUNCOUNT? txrx? ACTION32.RUNCOUNT
#scpiCmd ACTION4.RUNCOUNT? txrx? ACTION4.RUNCOUNT
#scpiCmd ACTION5.RUNCOUNT? txrx? ACTION5.RUNCOUNT
#scpiCmd ACTION6.RUNCOUNT? txrx? ACTION6.RUNCOUNT
#scpiCmd ACTION7.RUNCOUNT? txrx? ACTION7.RUNCOUNT
#scpiCmd ACTION8.RUNCOUNT? txrx? ACTION8.RUNCOUNT
#scpiCmd ACTION9.RUNCOUNT? txrx? ACTION9.RUNCOUNT
#scpiCmd AIN1.VALUE? txrx? AIN1.VALUE

#scpiCmd AIN2.VALUE? txrx? AIN2.VALUE

#scpiCmd AOUT1.VALUE? txrx? AOUT1.VALUE
#scpiCmd AOUT2.VALUE? txrx? AOUT2.VALUE

#scpiCmd CANOPEN.STATE? txrx? CANOPEN.STATE
#scpiCmd CAP1.COUNT? txrx? CAP1.COUNT
#scpiCmd CAP1.P? txrx? CAP1.P
#scpiCmd CAP1.STATE? txrx? CAP1.STATE
#scpiCmd CAP1.T? txrx? CAP1.T
#scpiCmd CAP2.COUNT? txrx? CAP2.COUNT
#scpiCmd CAP2.P? txrx? CAP2.P
#scpiCmd CAP2.STATE? txrx? CAP2.STATE
#scpiCmd CAP2.T? txrx? CAP2.T
#scpiCmd DIN.STATES? txrx? DIN.STATES
#scpiCmd DIN1.STATE? txrx? DIN1.STATE
#scpiCmd DIN10.STATE? txrx? DIN10.STATE
#scpiCmd DIN11.STATE? txrx? DIN11.STATE
#scpiCmd DIN12.STATE? txrx? DIN12.STATE
#scpiCmd DIN2.STATE? txrx? DIN2.STATE
#scpiCmd DIN3.STATE? txrx? DIN3.STATE
#scpiCmd DIN4.STATE? txrx? DIN4.STATE
#scpiCmd DIN5.STATE? txrx? DIN5.STATE
#scpiCmd DIN6.STATE? txrx? DIN6.STATE
#scpiCmd DIN7.STATE? txrx? DIN7.STATE
#scpiCmd DIN8.STATE? txrx? DIN8.STATE
#scpiCmd DIN9.STATE? txrx? DIN9.STATE
#scpiCmd DIO.STATES? txrx? DIO.STATES
#scpiCmd DIO1.STATE? txrx? DIO1.STATE
#scpiCmd DIO2.STATE? txrx? DIO2.STATE
#scpiCmd DIO3.STATE? txrx? DIO3.STATE
#scpiCmd DIO4.STATE? txrx? DIO4.STATE
#scpiCmd DIO5.STATE? txrx? DIO5.STATE
#scpiCmd DIO6.STATE? txrx? DIO6.STATE
#scpiCmd DOUT.STATES? txrx? DOUT.STATES
#scpiCmd DOUT1.STATE? txrx? DOUT1.STATE
#scpiCmd DOUT2.STATE? txrx? DOUT2.STATE
#scpiCmd DOUT3.STATE? txrx? DOUT3.STATE
#scpiCmd DOUT4.STATE? txrx? DOUT4.STATE
#scpiCmd DOUT5.STATE? txrx? DOUT5.STATE
#scpiCmd DOUT6.STATE? txrx? DOUT6.STATE
#scpiCmd DOUT7.STATE? txrx? DOUT7.STATE
#scpiCmd DOUT8.STATE? txrx? DOUT8.STATE
#scpiCmd DOUT9.STATE? txrx? DOUT9.STATE

#scpiCmd DRV.BOOTTIME? txrx? DRV.BOOTTIME
#scpiCmd DRV.CLRCRASHDUMP? txrx? DRV.CLRCRASHDUMP

#scpiCmd DRV.DIFVAR? txrx? DRV.DIFVAR

#scpiCmd DRV.DOWNLOADALLOWED? txrx? DRV.DOWNLOADALLOWED
#scpiCmd DRV.ERRORLIST? txrx? DRV.ERRORLIST
#scpiCmd DRV.FAULTACTIONS? txrx? DRV.FAULTACTIONS
#scpiCmd DRV.FAULTHIST? txrx? DRV.FAULTHIST
#scpiCmd DRV.FAULTLIST? txrx? DRV.FAULTLIST
#scpiCmd DRV.FAULTS? txrx? DRV.FAULTS
#scpiCmd DRV.FILES? txrx? DRV.FILES
#scpiCmd DRV.FLASHDUMP? txrx? DRV.FLASHDUMP
#scpiCmd DRV.HELP? txrx? DRV.HELP
#scpiCmd DRV.HELPALL? txrx? DRV.HELPALL
#scpiCmd DRV.HIDDENLIST? txrx? DRV.HIDDENLIST
#scpiCmd DRV.INFO? txrx? DRV.INFO
#scpiCmd DRV.LIST? txrx? DRV.LIST
#scpiCmd DRV.LOGIN? txrx? DRV.LOGIN

#scpiCmd DRV.MAINTAINERLIST? txrx? DRV.MAINTAINERLIST
#scpiCmd DRV.MEMLIST? txrx? DRV.MEMLIST
#scpiCmd DRV.NVCHECK? txrx? DRV.NVCHECK
#scpiCmd DRV.NVLIST? txrx? DRV.NVLIST

#scpiCmd DRV.ONTIME? txrx? DRV.ONTIME
#scpiCmd DRV.PRODUCTIONLIST? txrx? DRV.PRODUCTIONLIST

#scpiCmd DRV.RUNTIME? txrx? DRV.RUNTIME

#scpiCmd DRV.SUPERUSERLIST? txrx? DRV.SUPERUSERLIST
#scpiCmd DRV.TEMP? txrx? DRV.TEMP
#scpiCmd DRV.TEMPFTHRESH? txrx? DRV.TEMPFTHRESH
#scpiCmd DRV.TEMPWTHRESH? txrx? DRV.TEMPWTHRESH
#scpiCmd DRV.TYPE? txrx? DRV.TYPE
#scpiCmd DRV.WARNINGLIST? txrx? DRV.WARNINGLIST
#scpiCmd DRV.WARNINGS? txrx? DRV.WARNINGS
#scpiCmd ECAT.PLLMODE? txrx? ECAT.PLLMODE
#scpiCmd ECAT.PLLSTATE? txrx? ECAT.PLLSTATE
#scpiCmd ECAT.STATE? txrx? ECAT.STATE

#scpiCmd FB3.FAULTS? txrx? FB3.FAULTS
#scpiCmd FB3.FILT.OUTPUT? txrx? FB3.FILT.OUTPUT
#scpiCmd FB3.HALLSTATE? txrx? FB3.HALLSTATE
#scpiCmd FB3.IDENTIFIED? txrx? FB3.IDENTIFIED
#scpiCmd FB3.INFO? txrx? FB3.INFO
#scpiCmd FB3.MECHPOS? txrx? FB3.MECHPOS
#scpiCmd FB3.MEMDUMP? txrx? FB3.MEMDUMP
#scpiCmd FB3.ON.OUTPUT? txrx? FB3.ON.OUTPUT
#scpiCmd FB3.P? txrx? FB3.P
#scpiCmd FB3.PRINTMOTORDATA? txrx? FB3.PRINTMOTORDATA
#scpiCmd FB3.RES? txrx? FB3.RES
#scpiCmd FB3.RMS.OUTPUT? txrx? FB3.RMS.OUTPUT
#scpiCmd FB3.SIGNALAMPLITUDE? txrx? FB3.SIGNALAMPLITUDE
#scpiCmd FB3.SIGNALCOS? txrx? FB3.SIGNALCOS
#scpiCmd FB3.SIGNALSIN? txrx? FB3.SIGNALSIN
#scpiCmd FB4.FAULTS? txrx? FB4.FAULTS
#scpiCmd FB4.FILT.OUTPUT? txrx? FB4.FILT.OUTPUT
#scpiCmd FB4.HALLSTATE? txrx? FB4.HALLSTATE
#scpiCmd FB4.IDENTIFIED? txrx? FB4.IDENTIFIED
#scpiCmd FB4.INFO? txrx? FB4.INFO
#scpiCmd FB4.MECHPOS? txrx? FB4.MECHPOS
#scpiCmd FB4.MEMDUMP? txrx? FB4.MEMDUMP
#scpiCmd FB4.ON.OUTPUT? txrx? FB4.ON.OUTPUT
#scpiCmd FB4.P? txrx? FB4.P
#scpiCmd FB4.PRINTMOTORDATA? txrx? FB4.PRINTMOTORDATA
#scpiCmd FB4.RES? txrx? FB4.RES
#scpiCmd FB4.RMS.OUTPUT? txrx? FB4.RMS.OUTPUT
#scpiCmd FB4.SIGNALAMPLITUDE? txrx? FB4.SIGNALAMPLITUDE
#scpiCmd FB4.SIGNALCOS? txrx? FB4.SIGNALCOS
#scpiCmd FB4.SIGNALSIN? txrx? FB4.SIGNALSIN
#scpiCmd FB5.FAULTS? txrx? FB5.FAULTS
#scpiCmd FB5.FILT.OUTPUT? txrx? FB5.FILT.OUTPUT
#scpiCmd FB5.HALLSTATE? txrx? FB5.HALLSTATE
#scpiCmd FB5.IDENTIFIED? txrx? FB5.IDENTIFIED
#scpiCmd FB5.INFO? txrx? FB5.INFO
#scpiCmd FB5.MECHPOS? txrx? FB5.MECHPOS
#scpiCmd FB5.MEMDUMP? txrx? FB5.MEMDUMP
#scpiCmd FB5.ON.OUTPUT? txrx? FB5.ON.OUTPUT
#scpiCmd FB5.P? txrx? FB5.P
#scpiCmd FB5.PRINTMOTORDATA? txrx? FB5.PRINTMOTORDATA
#scpiCmd FB5.RES? txrx? FB5.RES
#scpiCmd FB5.RMS.OUTPUT? txrx? FB5.RMS.OUTPUT
#scpiCmd FB5.SIGNALAMPLITUDE? txrx? FB5.SIGNALAMPLITUDE
#scpiCmd FB5.SIGNALCOS? txrx? FB5.SIGNALCOS
#scpiCmd FB5.SIGNALSIN? txrx? FB5.SIGNALSIN
#scpiCmd FBUS.TYPE? txrx? FBUS.TYPE
#scpiCmd HW.FANSPEED1? txrx? HW.FANSPEED1
#scpiCmd HW.TEMP1? txrx? HW.TEMP1
#scpiCmd HW.TEMP2? txrx? HW.TEMP2
#scpiCmd HW.TEMP3? txrx? HW.TEMP3
#scpiCmd HW.VADC1? txrx? HW.VADC1
#scpiCmd HW.VADC2? txrx? HW.VADC2
#scpiCmd HW.VADC3? txrx? HW.VADC3
#scpiCmd HW.VADC4? txrx? HW.VADC4
#scpiCmd HW.VADC5? txrx? HW.VADC5
#scpiCmd HW.VADC6? txrx? HW.VADC6
#scpiCmd HW.VADC7? txrx? HW.VADC7
#scpiCmd HW.VADC8? txrx? HW.VADC8

#scpiCmd MODBUS.ERRORCOUNT? txrx? MODBUS.ERRORCOUNT
#scpiCmd MW.FAULTS? txrx? MW.FAULTS

#scpiCmd MW.MODELINFO? txrx? MW.MODELINFO
#scpiCmd MW.WARNINGS? txrx? MW.WARNINGS
#scpiCmd POWER1.VADC1? txrx? POWER1.VADC1
#scpiCmd POWER1.VADC2? txrx? POWER1.VADC2
#scpiCmd POWER1.VADC3? txrx? POWER1.VADC3
#scpiCmd POWER1.VADC4? txrx? POWER1.VADC4
#scpiCmd POWER1.VADC5? txrx? POWER1.VADC5
#scpiCmd POWER1.VADC6? txrx? POWER1.VADC6
#scpiCmd POWER1.VADC7? txrx? POWER1.VADC7
#scpiCmd POWER1.VADC8? txrx? POWER1.VADC8
#scpiCmd REC.ACTIVE? txrx? REC.ACTIVE
#scpiCmd REC.DONE? txrx? REC.DONE

#scpiCmd REC.RECPRMLIST? txrx? REC.RECPRMLIST
#scpiCmd REC.RETRIEVE? txrx? REC.RETRIEVE
#scpiCmd REC.RETRIEVEDATA? txrx? REC.RETRIEVEDATA
#scpiCmd REC.RETRIEVEHDR? txrx? REC.RETRIEVEHDR

#scpiCmd REC.TRIGPRMLIST? txrx? REC.TRIGPRMLIST
#scpiCmd REGEN.POWER? txrx? REGEN.POWER
#scpiCmd REGEN.POWERFILTERED? txrx? REGEN.POWERFILTERED
#scpiCmd REGEN.VOLTSHIGH? txrx? REGEN.VOLTSHIGH
#scpiCmd REGEN.VOLTSLOW? txrx? REGEN.VOLTSLOW
#scpiCmd TEST.BUTTONSTATE1? txrx? TEST.BUTTONSTATE1
#scpiCmd TEST.BUTTONSTATE2? txrx? TEST.BUTTONSTATE2
#scpiCmd TEST.SFA1RESISTANCE? txrx? TEST.SFA1RESISTANCE
#scpiCmd TEST.SFA2RESISTANCE? txrx? TEST.SFA2RESISTANCE
#scpiCmd TEST.X23RESISTANCE? txrx? TEST.X23RESISTANCE
#scpiCmd VBUS.CAP? txrx? VBUS.CAP
#scpiCmd VBUS.ICAP? txrx? VBUS.ICAP
#scpiCmd VBUS.ICAPLIMIT? txrx? VBUS.ICAPLIMIT
#scpiCmd VBUS.VALUE? txrx? VBUS.VALUE

;*************Below are Read Only AXIS1 parameters

#scpiCmd AXIS1.ACTIVE? txrx? AXIS1.ACTIVE
#scpiCmd AXIS1.CANOPEN.CONTROLWORD? txrx? AXIS1.CANOPEN.CONTROLWORD
#scpiCmd AXIS1.CANOPEN.STATUSWORD? txrx? AXIS1.CANOPEN.STATUSWORD

#scpiCmd AXIS1.CS.STATE? txrx? AXIS1.CS.STATE

#scpiCmd AXIS1.DISSOURCES? txrx? AXIS1.DISSOURCES
#scpiCmd AXIS1.DISSOURCESMASK? txrx? AXIS1.DISSOURCESMASK

#scpiCmd AXIS1.FAULT1? txrx? AXIS1.FAULT1
#scpiCmd AXIS1.FAULT10? txrx? AXIS1.FAULT10
#scpiCmd AXIS1.FAULT2? txrx? AXIS1.FAULT2
#scpiCmd AXIS1.FAULT3? txrx? AXIS1.FAULT3
#scpiCmd AXIS1.FAULT4? txrx? AXIS1.FAULT4
#scpiCmd AXIS1.FAULT5? txrx? AXIS1.FAULT5
#scpiCmd AXIS1.FAULT6? txrx? AXIS1.FAULT6
#scpiCmd AXIS1.FAULT7? txrx? AXIS1.FAULT7
#scpiCmd AXIS1.FAULT8? txrx? AXIS1.FAULT8
#scpiCmd AXIS1.FAULT9? txrx? AXIS1.FAULT9
#scpiCmd AXIS1.FAULTED? txrx? AXIS1.FAULTED
#scpiCmd AXIS1.FAULTS? txrx? AXIS1.FAULTS
#scpiCmd AXIS1.FBUS.BLOCKING? txrx? AXIS1.FBUS.BLOCKING

#scpiCmd AXIS1.GEAR.STATE? txrx? AXIS1.GEAR.STATE

#scpiCmd AXIS1.HOME.OFFSET? txrx? AXIS1.HOME.OFFSET

#scpiCmd AXIS1.HOME.SWITCHSTATE? txrx? AXIS1.HOME.SWITCHSTATE
#scpiCmd AXIS1.HWEN.STATE? txrx? AXIS1.HWEN.STATE
#scpiCmd AXIS1.HWLS.NEGSTATE? txrx? AXIS1.HWLS.NEGSTATE
#scpiCmd AXIS1.HWLS.POSSTATE? txrx? AXIS1.HWLS.POSSTATE
#scpiCmd AXIS1.ICONT? txrx? AXIS1.ICONT
#scpiCmd AXIS1.IL.BUSFF? txrx? AXIS1.IL.BUSFF
#scpiCmd AXIS1.IL.CMD? txrx? AXIS1.IL.CMD
#scpiCmd AXIS1.IL.CMDACC? txrx? AXIS1.IL.CMDACC
#scpiCmd AXIS1.IL.DI2T? txrx? AXIS1.IL.DI2T
#scpiCmd AXIS1.IL.DIFOLD? txrx? AXIS1.IL.DIFOLD
#scpiCmd AXIS1.IL.FB? txrx? AXIS1.IL.FB
#scpiCmd AXIS1.IL.FF? txrx? AXIS1.IL.FF
#scpiCmd AXIS1.IL.FOLDFTHRESH? txrx? AXIS1.IL.FOLDFTHRESH
#scpiCmd AXIS1.IL.IFOLD? txrx? AXIS1.IL.IFOLD
#scpiCmd AXIS1.IL.KP? txrx? AXIS1.IL.KP
#scpiCmd AXIS1.IL.KPLOOKUP? txrx? AXIS1.IL.KPLOOKUP
#scpiCmd AXIS1.IL.MI2T? txrx? AXIS1.IL.MI2T
#scpiCmd AXIS1.IL.MIFOLD? txrx? AXIS1.IL.MIFOLD
#scpiCmd AXIS1.IL.PWMFREQ? txrx? AXIS1.IL.PWMFREQ
#scpiCmd AXIS1.IL.VCMD? txrx? AXIS1.IL.VCMD
#scpiCmd AXIS1.IL.VDCMD? txrx? AXIS1.IL.VDCMD
#scpiCmd AXIS1.IL.VUFB? txrx? AXIS1.IL.VUFB
#scpiCmd AXIS1.IL.VVFB? txrx? AXIS1.IL.VVFB
#scpiCmd AXIS1.IL2.DFB? txrx? AXIS1.IL2.DFB
#scpiCmd AXIS1.IL2.FB? txrx? AXIS1.IL2.FB
#scpiCmd AXIS1.IL2.IUFB? txrx? AXIS1.IL2.IUFB
#scpiCmd AXIS1.IL2.IVFB? txrx? AXIS1.IL2.IVFB
#scpiCmd AXIS1.IPEAK? txrx? AXIS1.IPEAK

#scpiCmd AXIS1.MOTIONDISSOURCES? txrx? AXIS1.MOTIONDISSOURCES
#scpiCmd AXIS1.MOTIONSTAT? txrx? AXIS1.MOTIONSTAT
#scpiCmd AXIS1.MOTOR.IDDATAVALID? txrx? AXIS1.MOTOR.IDDATAVALID
#scpiCmd AXIS1.MOTOR.SERIALNUM? txrx? AXIS1.MOTOR.SERIALNUM
#scpiCmd AXIS1.MOTOR.SUPPORTEDPARAMS? txrx? AXIS1.MOTOR.SUPPORTEDPARAMS
#scpiCmd AXIS1.MOTOR.TEMP? txrx? AXIS1.MOTOR.TEMP
#scpiCmd AXIS1.MOTOR.TEMPC? txrx? AXIS1.MOTOR.TEMPC

#scpiCmd AXIS1.MT.LIST? txrx? AXIS1.MT.LIST
#scpiCmd AXIS1.MT.RUNNINGTASK? txrx? AXIS1.MT.RUNNINGTASK
#scpiCmd AXIS1.MT.VCMD? txrx? AXIS1.MT.VCMD
#scpiCmd AXIS1.PL.CMD? txrx? AXIS1.PL.CMD
#scpiCmd AXIS1.PL.ERR? txrx? AXIS1.PL.ERR
#scpiCmd AXIS1.PL.FB? txrx? AXIS1.PL.FB
#scpiCmd AXIS1.SAFE.STO.A? txrx? AXIS1.SAFE.STO.A
#scpiCmd AXIS1.SAFE.STO.ACTIVE? txrx? AXIS1.SAFE.STO.ACTIVE
#scpiCmd AXIS1.SAFE.STO.B? txrx? AXIS1.SAFE.STO.B
#scpiCmd AXIS1.SETUPREQBITS? txrx? AXIS1.SETUPREQBITS
#scpiCmd AXIS1.SETUPREQLIST? txrx? AXIS1.SETUPREQLIST

#scpiCmd AXIS1.SWLS.STATE? txrx? AXIS1.SWLS.STATE
#scpiCmd AXIS1.TEMP? txrx? AXIS1.TEMP
#scpiCmd AXIS1.TEMPFTHRESH? txrx? AXIS1.TEMPFTHRESH
#scpiCmd AXIS1.TEMPWTHRESH? txrx? AXIS1.TEMPWTHRESH
#scpiCmd AXIS1.UTFTHRESH? txrx? AXIS1.UTFTHRESH
#scpiCmd AXIS1.UTWTHRESH? txrx? AXIS1.UTWTHRESH
#scpiCmd AXIS1.VL.ACCFILTERED? txrx? AXIS1.VL.ACCFILTERED
#scpiCmd AXIS1.VL.CMD? txrx? AXIS1.VL.CMD
#scpiCmd AXIS1.VL.ERR? txrx? AXIS1.VL.ERR
#scpiCmd AXIS1.VL.FB? txrx? AXIS1.VL.FB
#scpiCmd AXIS1.VL.FBFILTER? txrx? AXIS1.VL.FBFILTER
#scpiCmd AXIS1.VL.FBUNFILTERED? txrx? AXIS1.VL.FBUNFILTERED
#scpiCmd AXIS1.VL.FF? txrx? AXIS1.VL.FF
#scpiCmd AXIS1.VL.VFTHRESH? txrx? AXIS1.VL.VFTHRESH
#scpiCmd AXIS1.WARNING1? txrx? AXIS1.WARNING1
#scpiCmd AXIS1.WARNING2? txrx? AXIS1.WARNING2
#scpiCmd AXIS1.WARNING3? txrx? AXIS1.WARNING3
#scpiCmd AXIS1.WARNINGS? txrx? AXIS1.WARNINGS

#scpiCmd AXIS1.WS.STATE? txrx? AXIS1.WS.STATE
#scpiCmd AXIS1.ZEROREACHED? txrx? AXIS1.ZEROREACHED

#scpiCmd BRAKE1.STATE? txrx? BRAKE1.STATE

#scpiCmd FB1.CALCOSGAIN? txrx? FB1.CALCOSGAIN
#scpiCmd FB1.CALCOSOFFSET? txrx? FB1.CALCOSOFFSET
#scpiCmd FB1.CALSINEGAIN? txrx? FB1.CALSINEGAIN
#scpiCmd FB1.CALSINOFFSET? txrx? FB1.CALSINOFFSET
#scpiCmd FB1.FAULTS? txrx? FB1.FAULTS
#scpiCmd FB1.FILT.OUTPUT? txrx? FB1.FILT.OUTPUT
#scpiCmd FB1.HALLSTATE? txrx? FB1.HALLSTATE
#scpiCmd FB1.IDENTIFIED? txrx? FB1.IDENTIFIED
#scpiCmd FB1.INFO? txrx? FB1.INFO
#scpiCmd FB1.MECHPOS? txrx? FB1.MECHPOS
#scpiCmd FB1.MEMDUMP? txrx? FB1.MEMDUMP
#scpiCmd FB1.MONITOR1.DATA? txrx? FB1.MONITOR1.DATA
#scpiCmd FB1.MONITOR2.DATA? txrx? FB1.MONITOR2.DATA
#scpiCmd FB1.ON.OUTPUT? txrx? FB1.ON.OUTPUT
#scpiCmd FB1.P? txrx? FB1.P
#scpiCmd FB1.PRINTMOTORDATA? txrx? FB1.PRINTMOTORDATA
#scpiCmd FB1.RES? txrx? FB1.RES
#scpiCmd FB1.RMS.OUTPUT? txrx? FB1.RMS.OUTPUT
#scpiCmd FB1.SIGNALAMPLITUDE? txrx? FB1.SIGNALAMPLITUDE
#scpiCmd FB1.SIGNALCOS? txrx? FB1.SIGNALCOS
#scpiCmd FB1.SIGNALSIN? txrx? FB1.SIGNALSIN

#scpiCmd SFA1.CMD? txrx? SFA1.CMD
#scpiCmd SFA1.EDSPARAM? txrx? SFA1.EDSPARAM
#scpiCmd SFA1.FAULTS? txrx? SFA1.FAULTS
#scpiCmd SFA1.INFO? txrx? SFA1.INFO



;*************Below are Read Only Axis2 parameters

#scpiCmd AXIS2.ACTIVE? txrx? AXIS2.ACTIVE
#scpiCmd AXIS2.CANOPEN.CONTROLWORD? txrx? AXIS2.CANOPEN.CONTROLWORD
#scpiCmd AXIS2.CANOPEN.STATUSWORD? txrx? AXIS2.CANOPEN.STATUSWORD
#scpiCmd AXIS2.CLRFAULTS? txrx? AXIS2.CLRFAULTS
#scpiCmd AXIS2.CS.STATE? txrx? AXIS2.CS.STATE

#scpiCmd AXIS2.DISSOURCES? txrx? AXIS2.DISSOURCES
#scpiCmd AXIS2.DISSOURCESMASK? txrx? AXIS2.DISSOURCESMASK

#scpiCmd AXIS2.FAULT1? txrx? AXIS2.FAULT1
#scpiCmd AXIS2.FAULT10? txrx? AXIS2.FAULT10
#scpiCmd AXIS2.FAULT2? txrx? AXIS2.FAULT2
#scpiCmd AXIS2.FAULT3? txrx? AXIS2.FAULT3
#scpiCmd AXIS2.FAULT4? txrx? AXIS2.FAULT4
#scpiCmd AXIS2.FAULT5? txrx? AXIS2.FAULT5
#scpiCmd AXIS2.FAULT6? txrx? AXIS2.FAULT6
#scpiCmd AXIS2.FAULT7? txrx? AXIS2.FAULT7
#scpiCmd AXIS2.FAULT8? txrx? AXIS2.FAULT8
#scpiCmd AXIS2.FAULT9? txrx? AXIS2.FAULT9
#scpiCmd AXIS2.FAULTED? txrx? AXIS2.FAULTED
#scpiCmd AXIS2.FAULTS? txrx? AXIS2.FAULTS
#scpiCmd AXIS2.FBUS.BLOCKING? txrx? AXIS2.FBUS.BLOCKING
#scpiCmd AXIS2.GEAR.MOVE? txrx? AXIS2.GEAR.MOVE
#scpiCmd AXIS2.GEAR.STATE? txrx? AXIS2.GEAR.STATE
#scpiCmd AXIS2.HOME.CLEAR? txrx? AXIS2.HOME.CLEAR
#scpiCmd AXIS2.HOME.MOVE? txrx? AXIS2.HOME.MOVE
#scpiCmd AXIS2.HOME.OFFSET? txrx? AXIS2.HOME.OFFSET
#scpiCmd AXIS2.HOME.SET? txrx? AXIS2.HOME.SET
#scpiCmd AXIS2.HOME.SWITCHSTATE? txrx? AXIS2.HOME.SWITCHSTATE
#scpiCmd AXIS2.HWEN.STATE? txrx? AXIS2.HWEN.STATE
#scpiCmd AXIS2.HWLS.NEGSTATE? txrx? AXIS2.HWLS.NEGSTATE
#scpiCmd AXIS2.HWLS.POSSTATE? txrx? AXIS2.HWLS.POSSTATE
#scpiCmd AXIS2.ICONT? txrx? AXIS2.ICONT
#scpiCmd AXIS2.IL.BUSFF? txrx? AXIS2.IL.BUSFF
#scpiCmd AXIS2.IL.CMD? txrx? AXIS2.IL.CMD
#scpiCmd AXIS2.IL.CMDACC? txrx? AXIS2.IL.CMDACC
#scpiCmd AXIS2.IL.DI2T? txrx? AXIS2.IL.DI2T
#scpiCmd AXIS2.IL.DIFOLD? txrx? AXIS2.IL.DIFOLD
#scpiCmd AXIS2.IL.FB? txrx? AXIS2.IL.FB
#scpiCmd AXIS2.IL.FF? txrx? AXIS2.IL.FF
#scpiCmd AXIS2.IL.FOLDFTHRESH? txrx? AXIS2.IL.FOLDFTHRESH
#scpiCmd AXIS2.IL.IFOLD? txrx? AXIS2.IL.IFOLD
#scpiCmd AXIS2.IL.KP? txrx? AXIS2.IL.KP
#scpiCmd AXIS2.IL.KPLOOKUP? txrx? AXIS2.IL.KPLOOKUP
#scpiCmd AXIS2.IL.MI2T? txrx? AXIS2.IL.MI2T
#scpiCmd AXIS2.IL.MIFOLD? txrx? AXIS2.IL.MIFOLD
#scpiCmd AXIS2.IL.PWMFREQ? txrx? AXIS2.IL.PWMFREQ
#scpiCmd AXIS2.IL.VCMD? txrx? AXIS2.IL.VCMD
#scpiCmd AXIS2.IL.VDCMD? txrx? AXIS2.IL.VDCMD
#scpiCmd AXIS2.IL.VUFB? txrx? AXIS2.IL.VUFB
#scpiCmd AXIS2.IL.VVFB? txrx? AXIS2.IL.VVFB
#scpiCmd AXIS2.IL2.DFB? txrx? AXIS2.IL2.DFB
#scpiCmd AXIS2.IL2.FB? txrx? AXIS2.IL2.FB
#scpiCmd AXIS2.IL2.IUFB? txrx? AXIS2.IL2.IUFB
#scpiCmd AXIS2.IL2.IVFB? txrx? AXIS2.IL2.IVFB
#scpiCmd AXIS2.IPEAK? txrx? AXIS2.IPEAK
#scpiCmd AXIS2.JOG.MOVEN? txrx? AXIS2.JOG.MOVEN
#scpiCmd AXIS2.JOG.MOVEP? txrx? AXIS2.JOG.MOVEP
#scpiCmd AXIS2.MOTIONDISSOURCES? txrx? AXIS2.MOTIONDISSOURCES
#scpiCmd AXIS2.MOTIONSTAT? txrx? AXIS2.MOTIONSTAT
#scpiCmd AXIS2.MOTOR.IDDATAVALID? txrx? AXIS2.MOTOR.IDDATAVALID
#scpiCmd AXIS2.MOTOR.SERIALNUM? txrx? AXIS2.MOTOR.SERIALNUM
#scpiCmd AXIS2.MOTOR.SUPPORTEDPARAMS? txrx? AXIS2.MOTOR.SUPPORTEDPARAMS
#scpiCmd AXIS2.MOTOR.TEMP? txrx? AXIS2.MOTOR.TEMP
#scpiCmd AXIS2.MOTOR.TEMPC? txrx? AXIS2.MOTOR.TEMPC
#scpiCmd AXIS2.MT.CLEARALL? txrx? AXIS2.MT.CLEARALL
#scpiCmd AXIS2.MT.CONTINUE? txrx? AXIS2.MT.CONTINUE
#scpiCmd AXIS2.MT.LIST? txrx? AXIS2.MT.LIST
#scpiCmd AXIS2.MT.RUNNINGTASK? txrx? AXIS2.MT.RUNNINGTASK
#scpiCmd AXIS2.MT.VCMD? txrx? AXIS2.MT.VCMD
#scpiCmd AXIS2.PL.CMD? txrx? AXIS2.PL.CMD
#scpiCmd AXIS2.PL.ERR? txrx? AXIS2.PL.ERR
#scpiCmd AXIS2.PL.FB? txrx? AXIS2.PL.FB
#scpiCmd AXIS2.SAFE.STO.A? txrx? AXIS2.SAFE.STO.A
#scpiCmd AXIS2.SAFE.STO.ACTIVE? txrx? AXIS2.SAFE.STO.ACTIVE
#scpiCmd AXIS2.SAFE.STO.B? txrx? AXIS2.SAFE.STO.B
#scpiCmd AXIS2.SETUPREQBITS? txrx? AXIS2.SETUPREQBITS
#scpiCmd AXIS2.SETUPREQLIST? txrx? AXIS2.SETUPREQLIST
#scpiCmd AXIS2.SM.MOVE? txrx? AXIS2.SM.MOVE
#scpiCmd AXIS2.STOP? txrx? AXIS2.STOP
#scpiCmd AXIS2.SWLS.STATE? txrx? AXIS2.SWLS.STATE
#scpiCmd AXIS2.TEMP? txrx? AXIS2.TEMP
#scpiCmd AXIS2.TEMPFTHRESH? txrx? AXIS2.TEMPFTHRESH
#scpiCmd AXIS2.TEMPWTHRESH? txrx? AXIS2.TEMPWTHRESH
#scpiCmd AXIS2.UTFTHRESH? txrx? AXIS2.UTFTHRESH
#scpiCmd AXIS2.UTWTHRESH? txrx? AXIS2.UTWTHRESH
#scpiCmd AXIS2.VL.ACCFILTERED? txrx? AXIS2.VL.ACCFILTERED
#scpiCmd AXIS2.VL.CMD? txrx? AXIS2.VL.CMD
#scpiCmd AXIS2.VL.ERR? txrx? AXIS2.VL.ERR
#scpiCmd AXIS2.VL.FB? txrx? AXIS2.VL.FB
#scpiCmd AXIS2.VL.FBFILTER? txrx? AXIS2.VL.FBFILTER
#scpiCmd AXIS2.VL.FBUNFILTERED? txrx? AXIS2.VL.FBUNFILTERED
#scpiCmd AXIS2.VL.FF? txrx? AXIS2.VL.FF
#scpiCmd AXIS2.VL.VFTHRESH? txrx? AXIS2.VL.VFTHRESH
#scpiCmd AXIS2.WARNING1? txrx? AXIS2.WARNING1
#scpiCmd AXIS2.WARNING2? txrx? AXIS2.WARNING2
#scpiCmd AXIS2.WARNING3? txrx? AXIS2.WARNING3
#scpiCmd AXIS2.WARNINGS? txrx? AXIS2.WARNINGS
#scpiCmd AXIS2.WS.ARM? txrx? AXIS2.WS.ARM
#scpiCmd AXIS2.WS.DISARM? txrx? AXIS2.WS.DISARM
#scpiCmd AXIS2.WS.STATE? txrx? AXIS2.WS.STATE
#scpiCmd AXIS2.ZEROREACHED? txrx? AXIS2.ZEROREACHED

#scpiCmd BRAKE2.STATE? txrx? BRAKE2.STATE

#scpiCmd FB2.CALCOSGAIN? txrx? FB2.CALCOSGAIN
#scpiCmd FB2.CALCOSOFFSET? txrx? FB2.CALCOSOFFSET
#scpiCmd FB2.CALSINEGAIN? txrx? FB2.CALSINEGAIN
#scpiCmd FB2.CALSINOFFSET? txrx? FB2.CALSINOFFSET
#scpiCmd FB2.FAULTS? txrx? FB2.FAULTS
#scpiCmd FB2.FILT.OUTPUT? txrx? FB2.FILT.OUTPUT
#scpiCmd FB2.HALLSTATE? txrx? FB2.HALLSTATE
#scpiCmd FB2.IDENTIFIED? txrx? FB2.IDENTIFIED
#scpiCmd FB2.INFO? txrx? FB2.INFO
#scpiCmd FB2.MECHPOS? txrx? FB2.MECHPOS
#scpiCmd FB2.MEMDUMP? txrx? FB2.MEMDUMP
#scpiCmd FB2.MONITOR1.DATA? txrx? FB2.MONITOR1.DATA
#scpiCmd FB2.MONITOR2.DATA? txrx? FB2.MONITOR2.DATA
#scpiCmd FB2.ON.OUTPUT? txrx? FB2.ON.OUTPUT
#scpiCmd FB2.P? txrx? FB2.P
#scpiCmd FB2.PRINTMOTORDATA? txrx? FB2.PRINTMOTORDATA
#scpiCmd FB2.RES? txrx? FB2.RES
#scpiCmd FB2.RMS.OUTPUT? txrx? FB2.RMS.OUTPUT
#scpiCmd FB2.SIGNALAMPLITUDE? txrx? FB2.SIGNALAMPLITUDE
#scpiCmd FB2.SIGNALCOS? txrx? FB2.SIGNALCOS
#scpiCmd FB2.SIGNALSIN? txrx? FB2.SIGNALSIN

#scpiCmd SFA2.CMD? txrx? SFA2.CMD
#scpiCmd SFA2.EDSPARAM? txrx? SFA2.EDSPARAM
#scpiCmd SFA2.FAULTS? txrx? SFA2.FAULTS
#scpiCmd SFA2.INFO? txrx? SFA2.INFO


;*************Below are Read Write common/unit parameters

#scpiCmd DRV.PRIVILEGE? txrx? DRV.PRIVILEGE
#scpiCmd DRV.PRIVILEGE txrx DRV.PRIVILEGE (value)

#scpiCmd ACBIQ1.a1? txrx? ACBIQ1.a1
#scpiCmd ACBIQ1.a1 txrx ACBIQ1.a1 (value)
#scpiCmd ACBIQ1.a2? txrx? ACBIQ1.a2
#scpiCmd ACBIQ1.a2 txrx ACBIQ1.a2 (value)
#scpiCmd ACBIQ1.b0? txrx? ACBIQ1.b0
#scpiCmd ACBIQ1.b0 txrx ACBIQ1.b0 (value)
#scpiCmd ACBIQ1.b1? txrx? ACBIQ1.b1
#scpiCmd ACBIQ1.b1 txrx ACBIQ1.b1 (value)
#scpiCmd ACBIQ1.b2? txrx? ACBIQ1.b2
#scpiCmd ACBIQ1.b2 txrx ACBIQ1.b2 (value)
#scpiCmd ACBIQ3.a1? txrx? ACBIQ3.a1
#scpiCmd ACBIQ3.a1 txrx ACBIQ3.a1 (value)
#scpiCmd ACBIQ3.a2? txrx? ACBIQ3.a2
#scpiCmd ACBIQ3.a2 txrx ACBIQ3.a2 (value)
#scpiCmd ACBIQ3.b0? txrx? ACBIQ3.b0
#scpiCmd ACBIQ3.b0 txrx ACBIQ3.b0 (value)
#scpiCmd ACBIQ3.b1? txrx? ACBIQ3.b1
#scpiCmd ACBIQ3.b1 txrx ACBIQ3.b1 (value)
#scpiCmd ACBIQ3.b2? txrx? ACBIQ3.b2
#scpiCmd ACBIQ3.b2 txrx ACBIQ3.b2 (value)
#scpiCmd ACBIQ4.a1? txrx? ACBIQ4.a1
#scpiCmd ACBIQ4.a1 txrx ACBIQ4.a1 (value)
#scpiCmd ACBIQ4.a2? txrx? ACBIQ4.a2
#scpiCmd ACBIQ4.a2 txrx ACBIQ4.a2 (value)
#scpiCmd ACBIQ4.b0? txrx? ACBIQ4.b0
#scpiCmd ACBIQ4.b0 txrx ACBIQ4.b0 (value)
#scpiCmd ACBIQ4.b1? txrx? ACBIQ4.b1
#scpiCmd ACBIQ4.b1 txrx ACBIQ4.b1 (value)
#scpiCmd ACBIQ4.b2? txrx? ACBIQ4.b2
#scpiCmd ACBIQ4.b2 txrx ACBIQ4.b2 (value)
#scpiCmd ACBIQ5.a1? txrx? ACBIQ5.a1
#scpiCmd ACBIQ5.a1 txrx ACBIQ5.a1 (value)
#scpiCmd ACBIQ5.a2? txrx? ACBIQ5.a2
#scpiCmd ACBIQ5.a2 txrx ACBIQ5.a2 (value)
#scpiCmd ACBIQ5.b0? txrx? ACBIQ5.b0
#scpiCmd ACBIQ5.b0 txrx ACBIQ5.b0 (value)
#scpiCmd ACBIQ5.b1? txrx? ACBIQ5.b1
#scpiCmd ACBIQ5.b1 txrx ACBIQ5.b1 (value)
#scpiCmd ACBIQ5.b2? txrx? ACBIQ5.b2
#scpiCmd ACBIQ5.b2 txrx ACBIQ5.b2 (value)
#scpiCmd ACTION1.ACTIVE? txrx? ACTION1.ACTIVE
#scpiCmd ACTION1.ACTIVE txrx ACTION1.ACTIVE (value)
#scpiCmd ACTION1.CONDITION? txrx? ACTION1.CONDITION
#scpiCmd ACTION1.CONDITION txrx ACTION1.CONDITION (value)
#scpiCmd ACTION1.CONDITIONVALUE? txrx? ACTION1.CONDITIONVALUE
#scpiCmd ACTION1.CONDITIONVALUE txrx ACTION1.CONDITIONVALUE (value)
#scpiCmd ACTION1.SOURCE? txrx? ACTION1.SOURCE
#scpiCmd ACTION1.SOURCE txrx ACTION1.SOURCE (value)
#scpiCmd ACTION1.SOURCEID? txrx? ACTION1.SOURCEID
#scpiCmd ACTION1.SOURCEID txrx ACTION1.SOURCEID (value)
#scpiCmd ACTION1.SOURCEPARAM? txrx? ACTION1.SOURCEPARAM
#scpiCmd ACTION1.SOURCEPARAM txrx ACTION1.SOURCEPARAM (value)
#scpiCmd ACTION1.TASK? txrx? ACTION1.TASK
#scpiCmd ACTION1.TASK txrx ACTION1.TASK (value)
#scpiCmd ACTION1.TASKID? txrx? ACTION1.TASKID
#scpiCmd ACTION1.TASKID txrx ACTION1.TASKID (value)
#scpiCmd ACTION1.TASKPARAM? txrx? ACTION1.TASKPARAM
#scpiCmd ACTION1.TASKPARAM txrx ACTION1.TASKPARAM (value)
#scpiCmd ACTION1.TASKTEXT? txrx? ACTION1.TASKTEXT
#scpiCmd ACTION1.TASKTEXT txrx ACTION1.TASKTEXT (value)
#scpiCmd ACTION10.ACTIVE? txrx? ACTION10.ACTIVE
#scpiCmd ACTION10.ACTIVE txrx ACTION10.ACTIVE (value)
#scpiCmd ACTION10.CONDITION? txrx? ACTION10.CONDITION
#scpiCmd ACTION10.CONDITION txrx ACTION10.CONDITION (value)
#scpiCmd ACTION10.CONDITIONVALUE? txrx? ACTION10.CONDITIONVALUE
#scpiCmd ACTION10.CONDITIONVALUE txrx ACTION10.CONDITIONVALUE (value)
#scpiCmd ACTION10.SOURCE? txrx? ACTION10.SOURCE
#scpiCmd ACTION10.SOURCE txrx ACTION10.SOURCE (value)
#scpiCmd ACTION10.SOURCEID? txrx? ACTION10.SOURCEID
#scpiCmd ACTION10.SOURCEID txrx ACTION10.SOURCEID (value)
#scpiCmd ACTION10.SOURCEPARAM? txrx? ACTION10.SOURCEPARAM
#scpiCmd ACTION10.SOURCEPARAM txrx ACTION10.SOURCEPARAM (value)
#scpiCmd ACTION10.TASK? txrx? ACTION10.TASK
#scpiCmd ACTION10.TASK txrx ACTION10.TASK (value)
#scpiCmd ACTION10.TASKID? txrx? ACTION10.TASKID
#scpiCmd ACTION10.TASKID txrx ACTION10.TASKID (value)
#scpiCmd ACTION10.TASKPARAM? txrx? ACTION10.TASKPARAM
#scpiCmd ACTION10.TASKPARAM txrx ACTION10.TASKPARAM (value)
#scpiCmd ACTION10.TASKTEXT? txrx? ACTION10.TASKTEXT
#scpiCmd ACTION10.TASKTEXT txrx ACTION10.TASKTEXT (value)
#scpiCmd ACTION11.ACTIVE? txrx? ACTION11.ACTIVE
#scpiCmd ACTION11.ACTIVE txrx ACTION11.ACTIVE (value)
#scpiCmd ACTION11.CONDITION? txrx? ACTION11.CONDITION
#scpiCmd ACTION11.CONDITION txrx ACTION11.CONDITION (value)
#scpiCmd ACTION11.CONDITIONVALUE? txrx? ACTION11.CONDITIONVALUE
#scpiCmd ACTION11.CONDITIONVALUE txrx ACTION11.CONDITIONVALUE (value)
#scpiCmd ACTION11.SOURCE? txrx? ACTION11.SOURCE
#scpiCmd ACTION11.SOURCE txrx ACTION11.SOURCE (value)
#scpiCmd ACTION11.SOURCEID? txrx? ACTION11.SOURCEID
#scpiCmd ACTION11.SOURCEID txrx ACTION11.SOURCEID (value)
#scpiCmd ACTION11.SOURCEPARAM? txrx? ACTION11.SOURCEPARAM
#scpiCmd ACTION11.SOURCEPARAM txrx ACTION11.SOURCEPARAM (value)
#scpiCmd ACTION11.TASK? txrx? ACTION11.TASK
#scpiCmd ACTION11.TASK txrx ACTION11.TASK (value)
#scpiCmd ACTION11.TASKID? txrx? ACTION11.TASKID
#scpiCmd ACTION11.TASKID txrx ACTION11.TASKID (value)
#scpiCmd ACTION11.TASKPARAM? txrx? ACTION11.TASKPARAM
#scpiCmd ACTION11.TASKPARAM txrx ACTION11.TASKPARAM (value)
#scpiCmd ACTION11.TASKTEXT? txrx? ACTION11.TASKTEXT
#scpiCmd ACTION11.TASKTEXT txrx ACTION11.TASKTEXT (value)
#scpiCmd ACTION12.ACTIVE? txrx? ACTION12.ACTIVE
#scpiCmd ACTION12.ACTIVE txrx ACTION12.ACTIVE (value)
#scpiCmd ACTION12.CONDITION? txrx? ACTION12.CONDITION
#scpiCmd ACTION12.CONDITION txrx ACTION12.CONDITION (value)
#scpiCmd ACTION12.CONDITIONVALUE? txrx? ACTION12.CONDITIONVALUE
#scpiCmd ACTION12.CONDITIONVALUE txrx ACTION12.CONDITIONVALUE (value)
#scpiCmd ACTION12.SOURCE? txrx? ACTION12.SOURCE
#scpiCmd ACTION12.SOURCE txrx ACTION12.SOURCE (value)
#scpiCmd ACTION12.SOURCEID? txrx? ACTION12.SOURCEID
#scpiCmd ACTION12.SOURCEID txrx ACTION12.SOURCEID (value)
#scpiCmd ACTION12.SOURCEPARAM? txrx? ACTION12.SOURCEPARAM
#scpiCmd ACTION12.SOURCEPARAM txrx ACTION12.SOURCEPARAM (value)
#scpiCmd ACTION12.TASK? txrx? ACTION12.TASK
#scpiCmd ACTION12.TASK txrx ACTION12.TASK (value)
#scpiCmd ACTION12.TASKID? txrx? ACTION12.TASKID
#scpiCmd ACTION12.TASKID txrx ACTION12.TASKID (value)
#scpiCmd ACTION12.TASKPARAM? txrx? ACTION12.TASKPARAM
#scpiCmd ACTION12.TASKPARAM txrx ACTION12.TASKPARAM (value)
#scpiCmd ACTION12.TASKTEXT? txrx? ACTION12.TASKTEXT
#scpiCmd ACTION12.TASKTEXT txrx ACTION12.TASKTEXT (value)
#scpiCmd ACTION13.ACTIVE? txrx? ACTION13.ACTIVE
#scpiCmd ACTION13.ACTIVE txrx ACTION13.ACTIVE (value)
#scpiCmd ACTION13.CONDITION? txrx? ACTION13.CONDITION
#scpiCmd ACTION13.CONDITION txrx ACTION13.CONDITION (value)
#scpiCmd ACTION13.CONDITIONVALUE? txrx? ACTION13.CONDITIONVALUE
#scpiCmd ACTION13.CONDITIONVALUE txrx ACTION13.CONDITIONVALUE (value)
#scpiCmd ACTION13.SOURCE? txrx? ACTION13.SOURCE
#scpiCmd ACTION13.SOURCE txrx ACTION13.SOURCE (value)
#scpiCmd ACTION13.SOURCEID? txrx? ACTION13.SOURCEID
#scpiCmd ACTION13.SOURCEID txrx ACTION13.SOURCEID (value)
#scpiCmd ACTION13.SOURCEPARAM? txrx? ACTION13.SOURCEPARAM
#scpiCmd ACTION13.SOURCEPARAM txrx ACTION13.SOURCEPARAM (value)
#scpiCmd ACTION13.TASK? txrx? ACTION13.TASK
#scpiCmd ACTION13.TASK txrx ACTION13.TASK (value)
#scpiCmd ACTION13.TASKID? txrx? ACTION13.TASKID
#scpiCmd ACTION13.TASKID txrx ACTION13.TASKID (value)
#scpiCmd ACTION13.TASKPARAM? txrx? ACTION13.TASKPARAM
#scpiCmd ACTION13.TASKPARAM txrx ACTION13.TASKPARAM (value)
#scpiCmd ACTION13.TASKTEXT? txrx? ACTION13.TASKTEXT
#scpiCmd ACTION13.TASKTEXT txrx ACTION13.TASKTEXT (value)
#scpiCmd ACTION14.ACTIVE? txrx? ACTION14.ACTIVE
#scpiCmd ACTION14.ACTIVE txrx ACTION14.ACTIVE (value)
#scpiCmd ACTION14.CONDITION? txrx? ACTION14.CONDITION
#scpiCmd ACTION14.CONDITION txrx ACTION14.CONDITION (value)
#scpiCmd ACTION14.CONDITIONVALUE? txrx? ACTION14.CONDITIONVALUE
#scpiCmd ACTION14.CONDITIONVALUE txrx ACTION14.CONDITIONVALUE (value)
#scpiCmd ACTION14.SOURCE? txrx? ACTION14.SOURCE
#scpiCmd ACTION14.SOURCE txrx ACTION14.SOURCE (value)
#scpiCmd ACTION14.SOURCEID? txrx? ACTION14.SOURCEID
#scpiCmd ACTION14.SOURCEID txrx ACTION14.SOURCEID (value)
#scpiCmd ACTION14.SOURCEPARAM? txrx? ACTION14.SOURCEPARAM
#scpiCmd ACTION14.SOURCEPARAM txrx ACTION14.SOURCEPARAM (value)
#scpiCmd ACTION14.TASK? txrx? ACTION14.TASK
#scpiCmd ACTION14.TASK txrx ACTION14.TASK (value)
#scpiCmd ACTION14.TASKID? txrx? ACTION14.TASKID
#scpiCmd ACTION14.TASKID txrx ACTION14.TASKID (value)
#scpiCmd ACTION14.TASKPARAM? txrx? ACTION14.TASKPARAM
#scpiCmd ACTION14.TASKPARAM txrx ACTION14.TASKPARAM (value)
#scpiCmd ACTION14.TASKTEXT? txrx? ACTION14.TASKTEXT
#scpiCmd ACTION14.TASKTEXT txrx ACTION14.TASKTEXT (value)
#scpiCmd ACTION15.ACTIVE? txrx? ACTION15.ACTIVE
#scpiCmd ACTION15.ACTIVE txrx ACTION15.ACTIVE (value)
#scpiCmd ACTION15.CONDITION? txrx? ACTION15.CONDITION
#scpiCmd ACTION15.CONDITION txrx ACTION15.CONDITION (value)
#scpiCmd ACTION15.CONDITIONVALUE? txrx? ACTION15.CONDITIONVALUE
#scpiCmd ACTION15.CONDITIONVALUE txrx ACTION15.CONDITIONVALUE (value)
#scpiCmd ACTION15.SOURCE? txrx? ACTION15.SOURCE
#scpiCmd ACTION15.SOURCE txrx ACTION15.SOURCE (value)
#scpiCmd ACTION15.SOURCEID? txrx? ACTION15.SOURCEID
#scpiCmd ACTION15.SOURCEID txrx ACTION15.SOURCEID (value)
#scpiCmd ACTION15.SOURCEPARAM? txrx? ACTION15.SOURCEPARAM
#scpiCmd ACTION15.SOURCEPARAM txrx ACTION15.SOURCEPARAM (value)
#scpiCmd ACTION15.TASK? txrx? ACTION15.TASK
#scpiCmd ACTION15.TASK txrx ACTION15.TASK (value)
#scpiCmd ACTION15.TASKID? txrx? ACTION15.TASKID
#scpiCmd ACTION15.TASKID txrx ACTION15.TASKID (value)
#scpiCmd ACTION15.TASKPARAM? txrx? ACTION15.TASKPARAM
#scpiCmd ACTION15.TASKPARAM txrx ACTION15.TASKPARAM (value)
#scpiCmd ACTION15.TASKTEXT? txrx? ACTION15.TASKTEXT
#scpiCmd ACTION15.TASKTEXT txrx ACTION15.TASKTEXT (value)
#scpiCmd ACTION16.ACTIVE? txrx? ACTION16.ACTIVE
#scpiCmd ACTION16.ACTIVE txrx ACTION16.ACTIVE (value)
#scpiCmd ACTION16.CONDITION? txrx? ACTION16.CONDITION
#scpiCmd ACTION16.CONDITION txrx ACTION16.CONDITION (value)
#scpiCmd ACTION16.CONDITIONVALUE? txrx? ACTION16.CONDITIONVALUE
#scpiCmd ACTION16.CONDITIONVALUE txrx ACTION16.CONDITIONVALUE (value)
#scpiCmd ACTION16.SOURCE? txrx? ACTION16.SOURCE
#scpiCmd ACTION16.SOURCE txrx ACTION16.SOURCE (value)
#scpiCmd ACTION16.SOURCEID? txrx? ACTION16.SOURCEID
#scpiCmd ACTION16.SOURCEID txrx ACTION16.SOURCEID (value)
#scpiCmd ACTION16.SOURCEPARAM? txrx? ACTION16.SOURCEPARAM
#scpiCmd ACTION16.SOURCEPARAM txrx ACTION16.SOURCEPARAM (value)
#scpiCmd ACTION16.TASK? txrx? ACTION16.TASK
#scpiCmd ACTION16.TASK txrx ACTION16.TASK (value)
#scpiCmd ACTION16.TASKID? txrx? ACTION16.TASKID
#scpiCmd ACTION16.TASKID txrx ACTION16.TASKID (value)
#scpiCmd ACTION16.TASKPARAM? txrx? ACTION16.TASKPARAM
#scpiCmd ACTION16.TASKPARAM txrx ACTION16.TASKPARAM (value)
#scpiCmd ACTION16.TASKTEXT? txrx? ACTION16.TASKTEXT
#scpiCmd ACTION16.TASKTEXT txrx ACTION16.TASKTEXT (value)
#scpiCmd ACTION17.ACTIVE? txrx? ACTION17.ACTIVE
#scpiCmd ACTION17.ACTIVE txrx ACTION17.ACTIVE (value)
#scpiCmd ACTION17.CONDITION? txrx? ACTION17.CONDITION
#scpiCmd ACTION17.CONDITION txrx ACTION17.CONDITION (value)
#scpiCmd ACTION17.CONDITIONVALUE? txrx? ACTION17.CONDITIONVALUE
#scpiCmd ACTION17.CONDITIONVALUE txrx ACTION17.CONDITIONVALUE (value)
#scpiCmd ACTION17.SOURCE? txrx? ACTION17.SOURCE
#scpiCmd ACTION17.SOURCE txrx ACTION17.SOURCE (value)
#scpiCmd ACTION17.SOURCEID? txrx? ACTION17.SOURCEID
#scpiCmd ACTION17.SOURCEID txrx ACTION17.SOURCEID (value)
#scpiCmd ACTION17.SOURCEPARAM? txrx? ACTION17.SOURCEPARAM
#scpiCmd ACTION17.SOURCEPARAM txrx ACTION17.SOURCEPARAM (value)
#scpiCmd ACTION17.TASK? txrx? ACTION17.TASK
#scpiCmd ACTION17.TASK txrx ACTION17.TASK (value)
#scpiCmd ACTION17.TASKID? txrx? ACTION17.TASKID
#scpiCmd ACTION17.TASKID txrx ACTION17.TASKID (value)
#scpiCmd ACTION17.TASKPARAM? txrx? ACTION17.TASKPARAM
#scpiCmd ACTION17.TASKPARAM txrx ACTION17.TASKPARAM (value)
#scpiCmd ACTION17.TASKTEXT? txrx? ACTION17.TASKTEXT
#scpiCmd ACTION17.TASKTEXT txrx ACTION17.TASKTEXT (value)
#scpiCmd ACTION18.ACTIVE? txrx? ACTION18.ACTIVE
#scpiCmd ACTION18.ACTIVE txrx ACTION18.ACTIVE (value)
#scpiCmd ACTION18.CONDITION? txrx? ACTION18.CONDITION
#scpiCmd ACTION18.CONDITION txrx ACTION18.CONDITION (value)
#scpiCmd ACTION18.CONDITIONVALUE? txrx? ACTION18.CONDITIONVALUE
#scpiCmd ACTION18.CONDITIONVALUE txrx ACTION18.CONDITIONVALUE (value)
#scpiCmd ACTION18.SOURCE? txrx? ACTION18.SOURCE
#scpiCmd ACTION18.SOURCE txrx ACTION18.SOURCE (value)
#scpiCmd ACTION18.SOURCEID? txrx? ACTION18.SOURCEID
#scpiCmd ACTION18.SOURCEID txrx ACTION18.SOURCEID (value)
#scpiCmd ACTION18.SOURCEPARAM? txrx? ACTION18.SOURCEPARAM
#scpiCmd ACTION18.SOURCEPARAM txrx ACTION18.SOURCEPARAM (value)
#scpiCmd ACTION18.TASK? txrx? ACTION18.TASK
#scpiCmd ACTION18.TASK txrx ACTION18.TASK (value)
#scpiCmd ACTION18.TASKID? txrx? ACTION18.TASKID
#scpiCmd ACTION18.TASKID txrx ACTION18.TASKID (value)
#scpiCmd ACTION18.TASKPARAM? txrx? ACTION18.TASKPARAM
#scpiCmd ACTION18.TASKPARAM txrx ACTION18.TASKPARAM (value)
#scpiCmd ACTION18.TASKTEXT? txrx? ACTION18.TASKTEXT
#scpiCmd ACTION18.TASKTEXT txrx ACTION18.TASKTEXT (value)
#scpiCmd ACTION19.ACTIVE? txrx? ACTION19.ACTIVE
#scpiCmd ACTION19.ACTIVE txrx ACTION19.ACTIVE (value)
#scpiCmd ACTION19.CONDITION? txrx? ACTION19.CONDITION
#scpiCmd ACTION19.CONDITION txrx ACTION19.CONDITION (value)
#scpiCmd ACTION19.CONDITIONVALUE? txrx? ACTION19.CONDITIONVALUE
#scpiCmd ACTION19.CONDITIONVALUE txrx ACTION19.CONDITIONVALUE (value)
#scpiCmd ACTION19.SOURCE? txrx? ACTION19.SOURCE
#scpiCmd ACTION19.SOURCE txrx ACTION19.SOURCE (value)
#scpiCmd ACTION19.SOURCEID? txrx? ACTION19.SOURCEID
#scpiCmd ACTION19.SOURCEID txrx ACTION19.SOURCEID (value)
#scpiCmd ACTION19.SOURCEPARAM? txrx? ACTION19.SOURCEPARAM
#scpiCmd ACTION19.SOURCEPARAM txrx ACTION19.SOURCEPARAM (value)
#scpiCmd ACTION19.TASK? txrx? ACTION19.TASK
#scpiCmd ACTION19.TASK txrx ACTION19.TASK (value)
#scpiCmd ACTION19.TASKID? txrx? ACTION19.TASKID
#scpiCmd ACTION19.TASKID txrx ACTION19.TASKID (value)
#scpiCmd ACTION19.TASKPARAM? txrx? ACTION19.TASKPARAM
#scpiCmd ACTION19.TASKPARAM txrx ACTION19.TASKPARAM (value)
#scpiCmd ACTION19.TASKTEXT? txrx? ACTION19.TASKTEXT
#scpiCmd ACTION19.TASKTEXT txrx ACTION19.TASKTEXT (value)
#scpiCmd ACTION2.ACTIVE? txrx? ACTION2.ACTIVE
#scpiCmd ACTION2.ACTIVE txrx ACTION2.ACTIVE (value)
#scpiCmd ACTION2.CONDITION? txrx? ACTION2.CONDITION
#scpiCmd ACTION2.CONDITION txrx ACTION2.CONDITION (value)
#scpiCmd ACTION2.CONDITIONVALUE? txrx? ACTION2.CONDITIONVALUE
#scpiCmd ACTION2.CONDITIONVALUE txrx ACTION2.CONDITIONVALUE (value)
#scpiCmd ACTION2.SOURCE? txrx? ACTION2.SOURCE
#scpiCmd ACTION2.SOURCE txrx ACTION2.SOURCE (value)
#scpiCmd ACTION2.SOURCEID? txrx? ACTION2.SOURCEID
#scpiCmd ACTION2.SOURCEID txrx ACTION2.SOURCEID (value)
#scpiCmd ACTION2.SOURCEPARAM? txrx? ACTION2.SOURCEPARAM
#scpiCmd ACTION2.SOURCEPARAM txrx ACTION2.SOURCEPARAM (value)
#scpiCmd ACTION2.TASK? txrx? ACTION2.TASK
#scpiCmd ACTION2.TASK txrx ACTION2.TASK (value)
#scpiCmd ACTION2.TASKID? txrx? ACTION2.TASKID
#scpiCmd ACTION2.TASKID txrx ACTION2.TASKID (value)
#scpiCmd ACTION2.TASKPARAM? txrx? ACTION2.TASKPARAM
#scpiCmd ACTION2.TASKPARAM txrx ACTION2.TASKPARAM (value)
#scpiCmd ACTION2.TASKTEXT? txrx? ACTION2.TASKTEXT
#scpiCmd ACTION2.TASKTEXT txrx ACTION2.TASKTEXT (value)
#scpiCmd ACTION20.ACTIVE? txrx? ACTION20.ACTIVE
#scpiCmd ACTION20.ACTIVE txrx ACTION20.ACTIVE (value)
#scpiCmd ACTION20.CONDITION? txrx? ACTION20.CONDITION
#scpiCmd ACTION20.CONDITION txrx ACTION20.CONDITION (value)
#scpiCmd ACTION20.CONDITIONVALUE? txrx? ACTION20.CONDITIONVALUE
#scpiCmd ACTION20.CONDITIONVALUE txrx ACTION20.CONDITIONVALUE (value)
#scpiCmd ACTION20.SOURCE? txrx? ACTION20.SOURCE
#scpiCmd ACTION20.SOURCE txrx ACTION20.SOURCE (value)
#scpiCmd ACTION20.SOURCEID? txrx? ACTION20.SOURCEID
#scpiCmd ACTION20.SOURCEID txrx ACTION20.SOURCEID (value)
#scpiCmd ACTION20.SOURCEPARAM? txrx? ACTION20.SOURCEPARAM
#scpiCmd ACTION20.SOURCEPARAM txrx ACTION20.SOURCEPARAM (value)
#scpiCmd ACTION20.TASK? txrx? ACTION20.TASK
#scpiCmd ACTION20.TASK txrx ACTION20.TASK (value)
#scpiCmd ACTION20.TASKID? txrx? ACTION20.TASKID
#scpiCmd ACTION20.TASKID txrx ACTION20.TASKID (value)
#scpiCmd ACTION20.TASKPARAM? txrx? ACTION20.TASKPARAM
#scpiCmd ACTION20.TASKPARAM txrx ACTION20.TASKPARAM (value)
#scpiCmd ACTION20.TASKTEXT? txrx? ACTION20.TASKTEXT
#scpiCmd ACTION20.TASKTEXT txrx ACTION20.TASKTEXT (value)
#scpiCmd ACTION21.ACTIVE? txrx? ACTION21.ACTIVE
#scpiCmd ACTION21.ACTIVE txrx ACTION21.ACTIVE (value)
#scpiCmd ACTION21.CONDITION? txrx? ACTION21.CONDITION
#scpiCmd ACTION21.CONDITION txrx ACTION21.CONDITION (value)
#scpiCmd ACTION21.CONDITIONVALUE? txrx? ACTION21.CONDITIONVALUE
#scpiCmd ACTION21.CONDITIONVALUE txrx ACTION21.CONDITIONVALUE (value)
#scpiCmd ACTION21.SOURCE? txrx? ACTION21.SOURCE
#scpiCmd ACTION21.SOURCE txrx ACTION21.SOURCE (value)
#scpiCmd ACTION21.SOURCEID? txrx? ACTION21.SOURCEID
#scpiCmd ACTION21.SOURCEID txrx ACTION21.SOURCEID (value)
#scpiCmd ACTION21.SOURCEPARAM? txrx? ACTION21.SOURCEPARAM
#scpiCmd ACTION21.SOURCEPARAM txrx ACTION21.SOURCEPARAM (value)
#scpiCmd ACTION21.TASK? txrx? ACTION21.TASK
#scpiCmd ACTION21.TASK txrx ACTION21.TASK (value)
#scpiCmd ACTION21.TASKID? txrx? ACTION21.TASKID
#scpiCmd ACTION21.TASKID txrx ACTION21.TASKID (value)
#scpiCmd ACTION21.TASKPARAM? txrx? ACTION21.TASKPARAM
#scpiCmd ACTION21.TASKPARAM txrx ACTION21.TASKPARAM (value)
#scpiCmd ACTION21.TASKTEXT? txrx? ACTION21.TASKTEXT
#scpiCmd ACTION21.TASKTEXT txrx ACTION21.TASKTEXT (value)
#scpiCmd ACTION22.ACTIVE? txrx? ACTION22.ACTIVE
#scpiCmd ACTION22.ACTIVE txrx ACTION22.ACTIVE (value)
#scpiCmd ACTION22.CONDITION? txrx? ACTION22.CONDITION
#scpiCmd ACTION22.CONDITION txrx ACTION22.CONDITION (value)
#scpiCmd ACTION22.CONDITIONVALUE? txrx? ACTION22.CONDITIONVALUE
#scpiCmd ACTION22.CONDITIONVALUE txrx ACTION22.CONDITIONVALUE (value)
#scpiCmd ACTION22.SOURCE? txrx? ACTION22.SOURCE
#scpiCmd ACTION22.SOURCE txrx ACTION22.SOURCE (value)
#scpiCmd ACTION22.SOURCEID? txrx? ACTION22.SOURCEID
#scpiCmd ACTION22.SOURCEID txrx ACTION22.SOURCEID (value)
#scpiCmd ACTION22.SOURCEPARAM? txrx? ACTION22.SOURCEPARAM
#scpiCmd ACTION22.SOURCEPARAM txrx ACTION22.SOURCEPARAM (value)
#scpiCmd ACTION22.TASK? txrx? ACTION22.TASK
#scpiCmd ACTION22.TASK txrx ACTION22.TASK (value)
#scpiCmd ACTION22.TASKID? txrx? ACTION22.TASKID
#scpiCmd ACTION22.TASKID txrx ACTION22.TASKID (value)
#scpiCmd ACTION22.TASKPARAM? txrx? ACTION22.TASKPARAM
#scpiCmd ACTION22.TASKPARAM txrx ACTION22.TASKPARAM (value)
#scpiCmd ACTION22.TASKTEXT? txrx? ACTION22.TASKTEXT
#scpiCmd ACTION22.TASKTEXT txrx ACTION22.TASKTEXT (value)
#scpiCmd ACTION23.ACTIVE? txrx? ACTION23.ACTIVE
#scpiCmd ACTION23.ACTIVE txrx ACTION23.ACTIVE (value)
#scpiCmd ACTION23.CONDITION? txrx? ACTION23.CONDITION
#scpiCmd ACTION23.CONDITION txrx ACTION23.CONDITION (value)
#scpiCmd ACTION23.CONDITIONVALUE? txrx? ACTION23.CONDITIONVALUE
#scpiCmd ACTION23.CONDITIONVALUE txrx ACTION23.CONDITIONVALUE (value)
#scpiCmd ACTION23.SOURCE? txrx? ACTION23.SOURCE
#scpiCmd ACTION23.SOURCE txrx ACTION23.SOURCE (value)
#scpiCmd ACTION23.SOURCEID? txrx? ACTION23.SOURCEID
#scpiCmd ACTION23.SOURCEID txrx ACTION23.SOURCEID (value)
#scpiCmd ACTION23.SOURCEPARAM? txrx? ACTION23.SOURCEPARAM
#scpiCmd ACTION23.SOURCEPARAM txrx ACTION23.SOURCEPARAM (value)
#scpiCmd ACTION23.TASK? txrx? ACTION23.TASK
#scpiCmd ACTION23.TASK txrx ACTION23.TASK (value)
#scpiCmd ACTION23.TASKID? txrx? ACTION23.TASKID
#scpiCmd ACTION23.TASKID txrx ACTION23.TASKID (value)
#scpiCmd ACTION23.TASKPARAM? txrx? ACTION23.TASKPARAM
#scpiCmd ACTION23.TASKPARAM txrx ACTION23.TASKPARAM (value)
#scpiCmd ACTION23.TASKTEXT? txrx? ACTION23.TASKTEXT
#scpiCmd ACTION23.TASKTEXT txrx ACTION23.TASKTEXT (value)
#scpiCmd ACTION24.ACTIVE? txrx? ACTION24.ACTIVE
#scpiCmd ACTION24.ACTIVE txrx ACTION24.ACTIVE (value)
#scpiCmd ACTION24.CONDITION? txrx? ACTION24.CONDITION
#scpiCmd ACTION24.CONDITION txrx ACTION24.CONDITION (value)
#scpiCmd ACTION24.CONDITIONVALUE? txrx? ACTION24.CONDITIONVALUE
#scpiCmd ACTION24.CONDITIONVALUE txrx ACTION24.CONDITIONVALUE (value)
#scpiCmd ACTION24.SOURCE? txrx? ACTION24.SOURCE
#scpiCmd ACTION24.SOURCE txrx ACTION24.SOURCE (value)
#scpiCmd ACTION24.SOURCEID? txrx? ACTION24.SOURCEID
#scpiCmd ACTION24.SOURCEID txrx ACTION24.SOURCEID (value)
#scpiCmd ACTION24.SOURCEPARAM? txrx? ACTION24.SOURCEPARAM
#scpiCmd ACTION24.SOURCEPARAM txrx ACTION24.SOURCEPARAM (value)
#scpiCmd ACTION24.TASK? txrx? ACTION24.TASK
#scpiCmd ACTION24.TASK txrx ACTION24.TASK (value)
#scpiCmd ACTION24.TASKID? txrx? ACTION24.TASKID
#scpiCmd ACTION24.TASKID txrx ACTION24.TASKID (value)
#scpiCmd ACTION24.TASKPARAM? txrx? ACTION24.TASKPARAM
#scpiCmd ACTION24.TASKPARAM txrx ACTION24.TASKPARAM (value)
#scpiCmd ACTION24.TASKTEXT? txrx? ACTION24.TASKTEXT
#scpiCmd ACTION24.TASKTEXT txrx ACTION24.TASKTEXT (value)
#scpiCmd ACTION25.ACTIVE? txrx? ACTION25.ACTIVE
#scpiCmd ACTION25.ACTIVE txrx ACTION25.ACTIVE (value)
#scpiCmd ACTION25.CONDITION? txrx? ACTION25.CONDITION
#scpiCmd ACTION25.CONDITION txrx ACTION25.CONDITION (value)
#scpiCmd ACTION25.CONDITIONVALUE? txrx? ACTION25.CONDITIONVALUE
#scpiCmd ACTION25.CONDITIONVALUE txrx ACTION25.CONDITIONVALUE (value)
#scpiCmd ACTION25.SOURCE? txrx? ACTION25.SOURCE
#scpiCmd ACTION25.SOURCE txrx ACTION25.SOURCE (value)
#scpiCmd ACTION25.SOURCEID? txrx? ACTION25.SOURCEID
#scpiCmd ACTION25.SOURCEID txrx ACTION25.SOURCEID (value)
#scpiCmd ACTION25.SOURCEPARAM? txrx? ACTION25.SOURCEPARAM
#scpiCmd ACTION25.SOURCEPARAM txrx ACTION25.SOURCEPARAM (value)
#scpiCmd ACTION25.TASK? txrx? ACTION25.TASK
#scpiCmd ACTION25.TASK txrx ACTION25.TASK (value)
#scpiCmd ACTION25.TASKID? txrx? ACTION25.TASKID
#scpiCmd ACTION25.TASKID txrx ACTION25.TASKID (value)
#scpiCmd ACTION25.TASKPARAM? txrx? ACTION25.TASKPARAM
#scpiCmd ACTION25.TASKPARAM txrx ACTION25.TASKPARAM (value)
#scpiCmd ACTION25.TASKTEXT? txrx? ACTION25.TASKTEXT
#scpiCmd ACTION25.TASKTEXT txrx ACTION25.TASKTEXT (value)
#scpiCmd ACTION26.ACTIVE? txrx? ACTION26.ACTIVE
#scpiCmd ACTION26.ACTIVE txrx ACTION26.ACTIVE (value)
#scpiCmd ACTION26.CONDITION? txrx? ACTION26.CONDITION
#scpiCmd ACTION26.CONDITION txrx ACTION26.CONDITION (value)
#scpiCmd ACTION26.CONDITIONVALUE? txrx? ACTION26.CONDITIONVALUE
#scpiCmd ACTION26.CONDITIONVALUE txrx ACTION26.CONDITIONVALUE (value)
#scpiCmd ACTION26.SOURCE? txrx? ACTION26.SOURCE
#scpiCmd ACTION26.SOURCE txrx ACTION26.SOURCE (value)
#scpiCmd ACTION26.SOURCEID? txrx? ACTION26.SOURCEID
#scpiCmd ACTION26.SOURCEID txrx ACTION26.SOURCEID (value)
#scpiCmd ACTION26.SOURCEPARAM? txrx? ACTION26.SOURCEPARAM
#scpiCmd ACTION26.SOURCEPARAM txrx ACTION26.SOURCEPARAM (value)
#scpiCmd ACTION26.TASK? txrx? ACTION26.TASK
#scpiCmd ACTION26.TASK txrx ACTION26.TASK (value)
#scpiCmd ACTION26.TASKID? txrx? ACTION26.TASKID
#scpiCmd ACTION26.TASKID txrx ACTION26.TASKID (value)
#scpiCmd ACTION26.TASKPARAM? txrx? ACTION26.TASKPARAM
#scpiCmd ACTION26.TASKPARAM txrx ACTION26.TASKPARAM (value)
#scpiCmd ACTION26.TASKTEXT? txrx? ACTION26.TASKTEXT
#scpiCmd ACTION26.TASKTEXT txrx ACTION26.TASKTEXT (value)
#scpiCmd ACTION27.ACTIVE? txrx? ACTION27.ACTIVE
#scpiCmd ACTION27.ACTIVE txrx ACTION27.ACTIVE (value)
#scpiCmd ACTION27.CONDITION? txrx? ACTION27.CONDITION
#scpiCmd ACTION27.CONDITION txrx ACTION27.CONDITION (value)
#scpiCmd ACTION27.CONDITIONVALUE? txrx? ACTION27.CONDITIONVALUE
#scpiCmd ACTION27.CONDITIONVALUE txrx ACTION27.CONDITIONVALUE (value)
#scpiCmd ACTION27.SOURCE? txrx? ACTION27.SOURCE
#scpiCmd ACTION27.SOURCE txrx ACTION27.SOURCE (value)
#scpiCmd ACTION27.SOURCEID? txrx? ACTION27.SOURCEID
#scpiCmd ACTION27.SOURCEID txrx ACTION27.SOURCEID (value)
#scpiCmd ACTION27.SOURCEPARAM? txrx? ACTION27.SOURCEPARAM
#scpiCmd ACTION27.SOURCEPARAM txrx ACTION27.SOURCEPARAM (value)
#scpiCmd ACTION27.TASK? txrx? ACTION27.TASK
#scpiCmd ACTION27.TASK txrx ACTION27.TASK (value)
#scpiCmd ACTION27.TASKID? txrx? ACTION27.TASKID
#scpiCmd ACTION27.TASKID txrx ACTION27.TASKID (value)
#scpiCmd ACTION27.TASKPARAM? txrx? ACTION27.TASKPARAM
#scpiCmd ACTION27.TASKPARAM txrx ACTION27.TASKPARAM (value)
#scpiCmd ACTION27.TASKTEXT? txrx? ACTION27.TASKTEXT
#scpiCmd ACTION27.TASKTEXT txrx ACTION27.TASKTEXT (value)
#scpiCmd ACTION28.ACTIVE? txrx? ACTION28.ACTIVE
#scpiCmd ACTION28.ACTIVE txrx ACTION28.ACTIVE (value)
#scpiCmd ACTION28.CONDITION? txrx? ACTION28.CONDITION
#scpiCmd ACTION28.CONDITION txrx ACTION28.CONDITION (value)
#scpiCmd ACTION28.CONDITIONVALUE? txrx? ACTION28.CONDITIONVALUE
#scpiCmd ACTION28.CONDITIONVALUE txrx ACTION28.CONDITIONVALUE (value)
#scpiCmd ACTION28.SOURCE? txrx? ACTION28.SOURCE
#scpiCmd ACTION28.SOURCE txrx ACTION28.SOURCE (value)
#scpiCmd ACTION28.SOURCEID? txrx? ACTION28.SOURCEID
#scpiCmd ACTION28.SOURCEID txrx ACTION28.SOURCEID (value)
#scpiCmd ACTION28.SOURCEPARAM? txrx? ACTION28.SOURCEPARAM
#scpiCmd ACTION28.SOURCEPARAM txrx ACTION28.SOURCEPARAM (value)
#scpiCmd ACTION28.TASK? txrx? ACTION28.TASK
#scpiCmd ACTION28.TASK txrx ACTION28.TASK (value)
#scpiCmd ACTION28.TASKID? txrx? ACTION28.TASKID
#scpiCmd ACTION28.TASKID txrx ACTION28.TASKID (value)
#scpiCmd ACTION28.TASKPARAM? txrx? ACTION28.TASKPARAM
#scpiCmd ACTION28.TASKPARAM txrx ACTION28.TASKPARAM (value)
#scpiCmd ACTION28.TASKTEXT? txrx? ACTION28.TASKTEXT
#scpiCmd ACTION28.TASKTEXT txrx ACTION28.TASKTEXT (value)
#scpiCmd ACTION29.ACTIVE? txrx? ACTION29.ACTIVE
#scpiCmd ACTION29.ACTIVE txrx ACTION29.ACTIVE (value)
#scpiCmd ACTION29.CONDITION? txrx? ACTION29.CONDITION
#scpiCmd ACTION29.CONDITION txrx ACTION29.CONDITION (value)
#scpiCmd ACTION29.CONDITIONVALUE? txrx? ACTION29.CONDITIONVALUE
#scpiCmd ACTION29.CONDITIONVALUE txrx ACTION29.CONDITIONVALUE (value)
#scpiCmd ACTION29.SOURCE? txrx? ACTION29.SOURCE
#scpiCmd ACTION29.SOURCE txrx ACTION29.SOURCE (value)
#scpiCmd ACTION29.SOURCEID? txrx? ACTION29.SOURCEID
#scpiCmd ACTION29.SOURCEID txrx ACTION29.SOURCEID (value)
#scpiCmd ACTION29.SOURCEPARAM? txrx? ACTION29.SOURCEPARAM
#scpiCmd ACTION29.SOURCEPARAM txrx ACTION29.SOURCEPARAM (value)
#scpiCmd ACTION29.TASK? txrx? ACTION29.TASK
#scpiCmd ACTION29.TASK txrx ACTION29.TASK (value)
#scpiCmd ACTION29.TASKID? txrx? ACTION29.TASKID
#scpiCmd ACTION29.TASKID txrx ACTION29.TASKID (value)
#scpiCmd ACTION29.TASKPARAM? txrx? ACTION29.TASKPARAM
#scpiCmd ACTION29.TASKPARAM txrx ACTION29.TASKPARAM (value)
#scpiCmd ACTION29.TASKTEXT? txrx? ACTION29.TASKTEXT
#scpiCmd ACTION29.TASKTEXT txrx ACTION29.TASKTEXT (value)
#scpiCmd ACTION3.ACTIVE? txrx? ACTION3.ACTIVE
#scpiCmd ACTION3.ACTIVE txrx ACTION3.ACTIVE (value)
#scpiCmd ACTION3.CONDITION? txrx? ACTION3.CONDITION
#scpiCmd ACTION3.CONDITION txrx ACTION3.CONDITION (value)
#scpiCmd ACTION3.CONDITIONVALUE? txrx? ACTION3.CONDITIONVALUE
#scpiCmd ACTION3.CONDITIONVALUE txrx ACTION3.CONDITIONVALUE (value)
#scpiCmd ACTION3.SOURCE? txrx? ACTION3.SOURCE
#scpiCmd ACTION3.SOURCE txrx ACTION3.SOURCE (value)
#scpiCmd ACTION3.SOURCEID? txrx? ACTION3.SOURCEID
#scpiCmd ACTION3.SOURCEID txrx ACTION3.SOURCEID (value)
#scpiCmd ACTION3.SOURCEPARAM? txrx? ACTION3.SOURCEPARAM
#scpiCmd ACTION3.SOURCEPARAM txrx ACTION3.SOURCEPARAM (value)
#scpiCmd ACTION3.TASK? txrx? ACTION3.TASK
#scpiCmd ACTION3.TASK txrx ACTION3.TASK (value)
#scpiCmd ACTION3.TASKID? txrx? ACTION3.TASKID
#scpiCmd ACTION3.TASKID txrx ACTION3.TASKID (value)
#scpiCmd ACTION3.TASKPARAM? txrx? ACTION3.TASKPARAM
#scpiCmd ACTION3.TASKPARAM txrx ACTION3.TASKPARAM (value)
#scpiCmd ACTION3.TASKTEXT? txrx? ACTION3.TASKTEXT
#scpiCmd ACTION3.TASKTEXT txrx ACTION3.TASKTEXT (value)
#scpiCmd ACTION30.ACTIVE? txrx? ACTION30.ACTIVE
#scpiCmd ACTION30.ACTIVE txrx ACTION30.ACTIVE (value)
#scpiCmd ACTION30.CONDITION? txrx? ACTION30.CONDITION
#scpiCmd ACTION30.CONDITION txrx ACTION30.CONDITION (value)
#scpiCmd ACTION30.CONDITIONVALUE? txrx? ACTION30.CONDITIONVALUE
#scpiCmd ACTION30.CONDITIONVALUE txrx ACTION30.CONDITIONVALUE (value)
#scpiCmd ACTION30.SOURCE? txrx? ACTION30.SOURCE
#scpiCmd ACTION30.SOURCE txrx ACTION30.SOURCE (value)
#scpiCmd ACTION30.SOURCEID? txrx? ACTION30.SOURCEID
#scpiCmd ACTION30.SOURCEID txrx ACTION30.SOURCEID (value)
#scpiCmd ACTION30.SOURCEPARAM? txrx? ACTION30.SOURCEPARAM
#scpiCmd ACTION30.SOURCEPARAM txrx ACTION30.SOURCEPARAM (value)
#scpiCmd ACTION30.TASK? txrx? ACTION30.TASK
#scpiCmd ACTION30.TASK txrx ACTION30.TASK (value)
#scpiCmd ACTION30.TASKID? txrx? ACTION30.TASKID
#scpiCmd ACTION30.TASKID txrx ACTION30.TASKID (value)
#scpiCmd ACTION30.TASKPARAM? txrx? ACTION30.TASKPARAM
#scpiCmd ACTION30.TASKPARAM txrx ACTION30.TASKPARAM (value)
#scpiCmd ACTION30.TASKTEXT? txrx? ACTION30.TASKTEXT
#scpiCmd ACTION30.TASKTEXT txrx ACTION30.TASKTEXT (value)
#scpiCmd ACTION31.ACTIVE? txrx? ACTION31.ACTIVE
#scpiCmd ACTION31.ACTIVE txrx ACTION31.ACTIVE (value)
#scpiCmd ACTION31.CONDITION? txrx? ACTION31.CONDITION
#scpiCmd ACTION31.CONDITION txrx ACTION31.CONDITION (value)
#scpiCmd ACTION31.CONDITIONVALUE? txrx? ACTION31.CONDITIONVALUE
#scpiCmd ACTION31.CONDITIONVALUE txrx ACTION31.CONDITIONVALUE (value)
#scpiCmd ACTION31.SOURCE? txrx? ACTION31.SOURCE
#scpiCmd ACTION31.SOURCE txrx ACTION31.SOURCE (value)
#scpiCmd ACTION31.SOURCEID? txrx? ACTION31.SOURCEID
#scpiCmd ACTION31.SOURCEID txrx ACTION31.SOURCEID (value)
#scpiCmd ACTION31.SOURCEPARAM? txrx? ACTION31.SOURCEPARAM
#scpiCmd ACTION31.SOURCEPARAM txrx ACTION31.SOURCEPARAM (value)
#scpiCmd ACTION31.TASK? txrx? ACTION31.TASK
#scpiCmd ACTION31.TASK txrx ACTION31.TASK (value)
#scpiCmd ACTION31.TASKID? txrx? ACTION31.TASKID
#scpiCmd ACTION31.TASKID txrx ACTION31.TASKID (value)
#scpiCmd ACTION31.TASKPARAM? txrx? ACTION31.TASKPARAM
#scpiCmd ACTION31.TASKPARAM txrx ACTION31.TASKPARAM (value)
#scpiCmd ACTION31.TASKTEXT? txrx? ACTION31.TASKTEXT
#scpiCmd ACTION31.TASKTEXT txrx ACTION31.TASKTEXT (value)
#scpiCmd ACTION32.ACTIVE? txrx? ACTION32.ACTIVE
#scpiCmd ACTION32.ACTIVE txrx ACTION32.ACTIVE (value)
#scpiCmd ACTION32.CONDITION? txrx? ACTION32.CONDITION
#scpiCmd ACTION32.CONDITION txrx ACTION32.CONDITION (value)
#scpiCmd ACTION32.CONDITIONVALUE? txrx? ACTION32.CONDITIONVALUE
#scpiCmd ACTION32.CONDITIONVALUE txrx ACTION32.CONDITIONVALUE (value)
#scpiCmd ACTION32.SOURCE? txrx? ACTION32.SOURCE
#scpiCmd ACTION32.SOURCE txrx ACTION32.SOURCE (value)
#scpiCmd ACTION32.SOURCEID? txrx? ACTION32.SOURCEID
#scpiCmd ACTION32.SOURCEID txrx ACTION32.SOURCEID (value)
#scpiCmd ACTION32.SOURCEPARAM? txrx? ACTION32.SOURCEPARAM
#scpiCmd ACTION32.SOURCEPARAM txrx ACTION32.SOURCEPARAM (value)
#scpiCmd ACTION32.TASK? txrx? ACTION32.TASK
#scpiCmd ACTION32.TASK txrx ACTION32.TASK (value)
#scpiCmd ACTION32.TASKID? txrx? ACTION32.TASKID
#scpiCmd ACTION32.TASKID txrx ACTION32.TASKID (value)
#scpiCmd ACTION32.TASKPARAM? txrx? ACTION32.TASKPARAM
#scpiCmd ACTION32.TASKPARAM txrx ACTION32.TASKPARAM (value)
#scpiCmd ACTION32.TASKTEXT? txrx? ACTION32.TASKTEXT
#scpiCmd ACTION32.TASKTEXT txrx ACTION32.TASKTEXT (value)
#scpiCmd ACTION4.ACTIVE? txrx? ACTION4.ACTIVE
#scpiCmd ACTION4.ACTIVE txrx ACTION4.ACTIVE (value)
#scpiCmd ACTION4.CONDITION? txrx? ACTION4.CONDITION
#scpiCmd ACTION4.CONDITION txrx ACTION4.CONDITION (value)
#scpiCmd ACTION4.CONDITIONVALUE? txrx? ACTION4.CONDITIONVALUE
#scpiCmd ACTION4.CONDITIONVALUE txrx ACTION4.CONDITIONVALUE (value)
#scpiCmd ACTION4.SOURCE? txrx? ACTION4.SOURCE
#scpiCmd ACTION4.SOURCE txrx ACTION4.SOURCE (value)
#scpiCmd ACTION4.SOURCEID? txrx? ACTION4.SOURCEID
#scpiCmd ACTION4.SOURCEID txrx ACTION4.SOURCEID (value)
#scpiCmd ACTION4.SOURCEPARAM? txrx? ACTION4.SOURCEPARAM
#scpiCmd ACTION4.SOURCEPARAM txrx ACTION4.SOURCEPARAM (value)
#scpiCmd ACTION4.TASK? txrx? ACTION4.TASK
#scpiCmd ACTION4.TASK txrx ACTION4.TASK (value)
#scpiCmd ACTION4.TASKID? txrx? ACTION4.TASKID
#scpiCmd ACTION4.TASKID txrx ACTION4.TASKID (value)
#scpiCmd ACTION4.TASKPARAM? txrx? ACTION4.TASKPARAM
#scpiCmd ACTION4.TASKPARAM txrx ACTION4.TASKPARAM (value)
#scpiCmd ACTION4.TASKTEXT? txrx? ACTION4.TASKTEXT
#scpiCmd ACTION4.TASKTEXT txrx ACTION4.TASKTEXT (value)
#scpiCmd ACTION5.ACTIVE? txrx? ACTION5.ACTIVE
#scpiCmd ACTION5.ACTIVE txrx ACTION5.ACTIVE (value)
#scpiCmd ACTION5.CONDITION? txrx? ACTION5.CONDITION
#scpiCmd ACTION5.CONDITION txrx ACTION5.CONDITION (value)
#scpiCmd ACTION5.CONDITIONVALUE? txrx? ACTION5.CONDITIONVALUE
#scpiCmd ACTION5.CONDITIONVALUE txrx ACTION5.CONDITIONVALUE (value)
#scpiCmd ACTION5.SOURCE? txrx? ACTION5.SOURCE
#scpiCmd ACTION5.SOURCE txrx ACTION5.SOURCE (value)
#scpiCmd ACTION5.SOURCEID? txrx? ACTION5.SOURCEID
#scpiCmd ACTION5.SOURCEID txrx ACTION5.SOURCEID (value)
#scpiCmd ACTION5.SOURCEPARAM? txrx? ACTION5.SOURCEPARAM
#scpiCmd ACTION5.SOURCEPARAM txrx ACTION5.SOURCEPARAM (value)
#scpiCmd ACTION5.TASK? txrx? ACTION5.TASK
#scpiCmd ACTION5.TASK txrx ACTION5.TASK (value)
#scpiCmd ACTION5.TASKID? txrx? ACTION5.TASKID
#scpiCmd ACTION5.TASKID txrx ACTION5.TASKID (value)
#scpiCmd ACTION5.TASKPARAM? txrx? ACTION5.TASKPARAM
#scpiCmd ACTION5.TASKPARAM txrx ACTION5.TASKPARAM (value)
#scpiCmd ACTION5.TASKTEXT? txrx? ACTION5.TASKTEXT
#scpiCmd ACTION5.TASKTEXT txrx ACTION5.TASKTEXT (value)
#scpiCmd ACTION6.ACTIVE? txrx? ACTION6.ACTIVE
#scpiCmd ACTION6.ACTIVE txrx ACTION6.ACTIVE (value)
#scpiCmd ACTION6.CONDITION? txrx? ACTION6.CONDITION
#scpiCmd ACTION6.CONDITION txrx ACTION6.CONDITION (value)
#scpiCmd ACTION6.CONDITIONVALUE? txrx? ACTION6.CONDITIONVALUE
#scpiCmd ACTION6.CONDITIONVALUE txrx ACTION6.CONDITIONVALUE (value)
#scpiCmd ACTION6.SOURCE? txrx? ACTION6.SOURCE
#scpiCmd ACTION6.SOURCE txrx ACTION6.SOURCE (value)
#scpiCmd ACTION6.SOURCEID? txrx? ACTION6.SOURCEID
#scpiCmd ACTION6.SOURCEID txrx ACTION6.SOURCEID (value)
#scpiCmd ACTION6.SOURCEPARAM? txrx? ACTION6.SOURCEPARAM
#scpiCmd ACTION6.SOURCEPARAM txrx ACTION6.SOURCEPARAM (value)
#scpiCmd ACTION6.TASK? txrx? ACTION6.TASK
#scpiCmd ACTION6.TASK txrx ACTION6.TASK (value)
#scpiCmd ACTION6.TASKID? txrx? ACTION6.TASKID
#scpiCmd ACTION6.TASKID txrx ACTION6.TASKID (value)
#scpiCmd ACTION6.TASKPARAM? txrx? ACTION6.TASKPARAM
#scpiCmd ACTION6.TASKPARAM txrx ACTION6.TASKPARAM (value)
#scpiCmd ACTION6.TASKTEXT? txrx? ACTION6.TASKTEXT
#scpiCmd ACTION6.TASKTEXT txrx ACTION6.TASKTEXT (value)
#scpiCmd ACTION7.ACTIVE? txrx? ACTION7.ACTIVE
#scpiCmd ACTION7.ACTIVE txrx ACTION7.ACTIVE (value)
#scpiCmd ACTION7.CONDITION? txrx? ACTION7.CONDITION
#scpiCmd ACTION7.CONDITION txrx ACTION7.CONDITION (value)
#scpiCmd ACTION7.CONDITIONVALUE? txrx? ACTION7.CONDITIONVALUE
#scpiCmd ACTION7.CONDITIONVALUE txrx ACTION7.CONDITIONVALUE (value)
#scpiCmd ACTION7.SOURCE? txrx? ACTION7.SOURCE
#scpiCmd ACTION7.SOURCE txrx ACTION7.SOURCE (value)
#scpiCmd ACTION7.SOURCEID? txrx? ACTION7.SOURCEID
#scpiCmd ACTION7.SOURCEID txrx ACTION7.SOURCEID (value)
#scpiCmd ACTION7.SOURCEPARAM? txrx? ACTION7.SOURCEPARAM
#scpiCmd ACTION7.SOURCEPARAM txrx ACTION7.SOURCEPARAM (value)
#scpiCmd ACTION7.TASK? txrx? ACTION7.TASK
#scpiCmd ACTION7.TASK txrx ACTION7.TASK (value)
#scpiCmd ACTION7.TASKID? txrx? ACTION7.TASKID
#scpiCmd ACTION7.TASKID txrx ACTION7.TASKID (value)
#scpiCmd ACTION7.TASKPARAM? txrx? ACTION7.TASKPARAM
#scpiCmd ACTION7.TASKPARAM txrx ACTION7.TASKPARAM (value)
#scpiCmd ACTION7.TASKTEXT? txrx? ACTION7.TASKTEXT
#scpiCmd ACTION7.TASKTEXT txrx ACTION7.TASKTEXT (value)
#scpiCmd ACTION8.ACTIVE? txrx? ACTION8.ACTIVE
#scpiCmd ACTION8.ACTIVE txrx ACTION8.ACTIVE (value)
#scpiCmd ACTION8.CONDITION? txrx? ACTION8.CONDITION
#scpiCmd ACTION8.CONDITION txrx ACTION8.CONDITION (value)
#scpiCmd ACTION8.CONDITIONVALUE? txrx? ACTION8.CONDITIONVALUE
#scpiCmd ACTION8.CONDITIONVALUE txrx ACTION8.CONDITIONVALUE (value)
#scpiCmd ACTION8.SOURCE? txrx? ACTION8.SOURCE
#scpiCmd ACTION8.SOURCE txrx ACTION8.SOURCE (value)
#scpiCmd ACTION8.SOURCEID? txrx? ACTION8.SOURCEID
#scpiCmd ACTION8.SOURCEID txrx ACTION8.SOURCEID (value)
#scpiCmd ACTION8.SOURCEPARAM? txrx? ACTION8.SOURCEPARAM
#scpiCmd ACTION8.SOURCEPARAM txrx ACTION8.SOURCEPARAM (value)
#scpiCmd ACTION8.TASK? txrx? ACTION8.TASK
#scpiCmd ACTION8.TASK txrx ACTION8.TASK (value)
#scpiCmd ACTION8.TASKID? txrx? ACTION8.TASKID
#scpiCmd ACTION8.TASKID txrx ACTION8.TASKID (value)
#scpiCmd ACTION8.TASKPARAM? txrx? ACTION8.TASKPARAM
#scpiCmd ACTION8.TASKPARAM txrx ACTION8.TASKPARAM (value)
#scpiCmd ACTION8.TASKTEXT? txrx? ACTION8.TASKTEXT
#scpiCmd ACTION8.TASKTEXT txrx ACTION8.TASKTEXT (value)
#scpiCmd ACTION9.ACTIVE? txrx? ACTION9.ACTIVE
#scpiCmd ACTION9.ACTIVE txrx ACTION9.ACTIVE (value)
#scpiCmd ACTION9.CONDITION? txrx? ACTION9.CONDITION
#scpiCmd ACTION9.CONDITION txrx ACTION9.CONDITION (value)
#scpiCmd ACTION9.CONDITIONVALUE? txrx? ACTION9.CONDITIONVALUE
#scpiCmd ACTION9.CONDITIONVALUE txrx ACTION9.CONDITIONVALUE (value)
#scpiCmd ACTION9.SOURCE? txrx? ACTION9.SOURCE
#scpiCmd ACTION9.SOURCE txrx ACTION9.SOURCE (value)
#scpiCmd ACTION9.SOURCEID? txrx? ACTION9.SOURCEID
#scpiCmd ACTION9.SOURCEID txrx ACTION9.SOURCEID (value)
#scpiCmd ACTION9.SOURCEPARAM? txrx? ACTION9.SOURCEPARAM
#scpiCmd ACTION9.SOURCEPARAM txrx ACTION9.SOURCEPARAM (value)
#scpiCmd ACTION9.TASK? txrx? ACTION9.TASK
#scpiCmd ACTION9.TASK txrx ACTION9.TASK (value)
#scpiCmd ACTION9.TASKID? txrx? ACTION9.TASKID
#scpiCmd ACTION9.TASKID txrx ACTION9.TASKID (value)
#scpiCmd ACTION9.TASKPARAM? txrx? ACTION9.TASKPARAM
#scpiCmd ACTION9.TASKPARAM txrx ACTION9.TASKPARAM (value)
#scpiCmd ACTION9.TASKTEXT? txrx? ACTION9.TASKTEXT
#scpiCmd ACTION9.TASKTEXT txrx ACTION9.TASKTEXT (value)
#scpiCmd AIN1.CUTOFF? txrx? AIN1.CUTOFF
#scpiCmd AIN1.CUTOFF txrx AIN1.CUTOFF (value)
#scpiCmd AIN1.DEADBAND? txrx? AIN1.DEADBAND
#scpiCmd AIN1.DEADBAND txrx AIN1.DEADBAND (value)
#scpiCmd AIN1.DEADBANDMODE? txrx? AIN1.DEADBANDMODE
#scpiCmd AIN1.DEADBANDMODE txrx AIN1.DEADBANDMODE (value)
#scpiCmd AIN1.OFFSET? txrx? AIN1.OFFSET
#scpiCmd AIN1.OFFSET txrx AIN1.OFFSET (value)
#scpiCmd AIN2.CUTOFF? txrx? AIN2.CUTOFF
#scpiCmd AIN2.CUTOFF txrx AIN2.CUTOFF (value)
#scpiCmd AIN2.DEADBAND? txrx? AIN2.DEADBAND
#scpiCmd AIN2.DEADBAND txrx AIN2.DEADBAND (value)
#scpiCmd AIN2.DEADBANDMODE? txrx? AIN2.DEADBANDMODE
#scpiCmd AIN2.DEADBANDMODE txrx AIN2.DEADBANDMODE (value)
#scpiCmd AIN2.OFFSET? txrx? AIN2.OFFSET
#scpiCmd AIN2.OFFSET txrx AIN2.OFFSET (value)
#scpiCmd AOUT1.CUTOFF? txrx? AOUT1.CUTOFF
#scpiCmd AOUT1.CUTOFF txrx AOUT1.CUTOFF (value)
#scpiCmd AOUT1.OFFSET? txrx? AOUT1.OFFSET
#scpiCmd AOUT1.OFFSET txrx AOUT1.OFFSET (value)
#scpiCmd AOUT1.SOURCE? txrx? AOUT1.SOURCE
#scpiCmd AOUT1.SOURCE txrx AOUT1.SOURCE (value)
#scpiCmd AOUT1.VALUEU? txrx? AOUT1.VALUEU
#scpiCmd AOUT1.VALUEU txrx AOUT1.VALUEU (value)
#scpiCmd AOUT2.CUTOFF? txrx? AOUT2.CUTOFF
#scpiCmd AOUT2.CUTOFF txrx AOUT2.CUTOFF (value)
#scpiCmd AOUT2.OFFSET? txrx? AOUT2.OFFSET
#scpiCmd AOUT2.OFFSET txrx AOUT2.OFFSET (value)
#scpiCmd AOUT2.SOURCE? txrx? AOUT2.SOURCE
#scpiCmd AOUT2.SOURCE txrx AOUT2.SOURCE (value)
#scpiCmd AOUT2.VALUEU? txrx? AOUT2.VALUEU
#scpiCmd AOUT2.VALUEU txrx AOUT2.VALUEU (value)

#scpiCmd CANOPEN.MONITORSYNC? txrx? CANOPEN.MONITORSYNC
#scpiCmd CANOPEN.MONITORSYNC txrx CANOPEN.MONITORSYNC (value)
#scpiCmd CANOPEN.SAMPLEPERIOD? txrx? CANOPEN.SAMPLEPERIOD
#scpiCmd CANOPEN.SAMPLEPERIOD txrx CANOPEN.SAMPLEPERIOD (value)
#scpiCmd CANOPEN.WORKBENCHUNITS? txrx? CANOPEN.WORKBENCHUNITS
#scpiCmd CANOPEN.WORKBENCHUNITS txrx CANOPEN.WORKBENCHUNITS (value)
#scpiCmd CAP1.ARM? txrx? CAP1.ARM
#scpiCmd CAP1.ARM txrx CAP1.ARM (value)
#scpiCmd CAP1.EDGE? txrx? CAP1.EDGE
#scpiCmd CAP1.EDGE txrx CAP1.EDGE (value)
#scpiCmd CAP1.PREEDGE? txrx? CAP1.PREEDGE
#scpiCmd CAP1.PREEDGE txrx CAP1.PREEDGE (value)
#scpiCmd CAP1.PREMODE? txrx? CAP1.PREMODE
#scpiCmd CAP1.PREMODE txrx CAP1.PREMODE (value)
#scpiCmd CAP1.PRESELECT? txrx? CAP1.PRESELECT
#scpiCmd CAP1.PRESELECT txrx CAP1.PRESELECT (value)
#scpiCmd CAP1.REARM? txrx? CAP1.REARM
#scpiCmd CAP1.REARM txrx CAP1.REARM (value)
#scpiCmd CAP1.SOURCE? txrx? CAP1.SOURCE
#scpiCmd CAP1.SOURCE txrx CAP1.SOURCE (value)
#scpiCmd CAP1.TRIGGER? txrx? CAP1.TRIGGER
#scpiCmd CAP1.TRIGGER txrx CAP1.TRIGGER (value)
#scpiCmd CAP2.ARM? txrx? CAP2.ARM
#scpiCmd CAP2.ARM txrx CAP2.ARM (value)
#scpiCmd CAP2.EDGE? txrx? CAP2.EDGE
#scpiCmd CAP2.EDGE txrx CAP2.EDGE (value)
#scpiCmd CAP2.PREEDGE? txrx? CAP2.PREEDGE
#scpiCmd CAP2.PREEDGE txrx CAP2.PREEDGE (value)
#scpiCmd CAP2.PREMODE? txrx? CAP2.PREMODE
#scpiCmd CAP2.PREMODE txrx CAP2.PREMODE (value)
#scpiCmd CAP2.PRESELECT? txrx? CAP2.PRESELECT
#scpiCmd CAP2.PRESELECT txrx CAP2.PRESELECT (value)
#scpiCmd CAP2.REARM? txrx? CAP2.REARM
#scpiCmd CAP2.REARM txrx CAP2.REARM (value)
#scpiCmd CAP2.SOURCE? txrx? CAP2.SOURCE
#scpiCmd CAP2.SOURCE txrx CAP2.SOURCE (value)
#scpiCmd CAP2.TRIGGER? txrx? CAP2.TRIGGER
#scpiCmd CAP2.TRIGGER txrx CAP2.TRIGGER (value)
#scpiCmd DIN1.FILTER? txrx? DIN1.FILTER
#scpiCmd DIN1.FILTER txrx DIN1.FILTER (value)
#scpiCmd DIN1.INV? txrx? DIN1.INV
#scpiCmd DIN1.INV txrx DIN1.INV (value)
#scpiCmd DIN10.FILTER? txrx? DIN10.FILTER
#scpiCmd DIN10.FILTER txrx DIN10.FILTER (value)
#scpiCmd DIN10.INV? txrx? DIN10.INV
#scpiCmd DIN10.INV txrx DIN10.INV (value)
#scpiCmd DIN11.FILTER? txrx? DIN11.FILTER
#scpiCmd DIN11.FILTER txrx DIN11.FILTER (value)
#scpiCmd DIN11.INV? txrx? DIN11.INV
#scpiCmd DIN11.INV txrx DIN11.INV (value)
#scpiCmd DIN12.FILTER? txrx? DIN12.FILTER
#scpiCmd DIN12.FILTER txrx DIN12.FILTER (value)
#scpiCmd DIN12.INV? txrx? DIN12.INV
#scpiCmd DIN12.INV txrx DIN12.INV (value)
#scpiCmd DIN2.FILTER? txrx? DIN2.FILTER
#scpiCmd DIN2.FILTER txrx DIN2.FILTER (value)
#scpiCmd DIN2.INV? txrx? DIN2.INV
#scpiCmd DIN2.INV txrx DIN2.INV (value)
#scpiCmd DIN3.FILTER? txrx? DIN3.FILTER
#scpiCmd DIN3.FILTER txrx DIN3.FILTER (value)
#scpiCmd DIN3.INV? txrx? DIN3.INV
#scpiCmd DIN3.INV txrx DIN3.INV (value)
#scpiCmd DIN4.FILTER? txrx? DIN4.FILTER
#scpiCmd DIN4.FILTER txrx DIN4.FILTER (value)
#scpiCmd DIN4.INV? txrx? DIN4.INV
#scpiCmd DIN4.INV txrx DIN4.INV (value)
#scpiCmd DIN5.FILTER? txrx? DIN5.FILTER
#scpiCmd DIN5.FILTER txrx DIN5.FILTER (value)
#scpiCmd DIN5.INV? txrx? DIN5.INV
#scpiCmd DIN5.INV txrx DIN5.INV (value)
#scpiCmd DIN6.FILTER? txrx? DIN6.FILTER
#scpiCmd DIN6.FILTER txrx DIN6.FILTER (value)
#scpiCmd DIN6.INV? txrx? DIN6.INV
#scpiCmd DIN6.INV txrx DIN6.INV (value)
#scpiCmd DIN7.FILTER? txrx? DIN7.FILTER
#scpiCmd DIN7.FILTER txrx DIN7.FILTER (value)
#scpiCmd DIN7.INV? txrx? DIN7.INV
#scpiCmd DIN7.INV txrx DIN7.INV (value)
#scpiCmd DIN8.FILTER? txrx? DIN8.FILTER
#scpiCmd DIN8.FILTER txrx DIN8.FILTER (value)
#scpiCmd DIN8.INV? txrx? DIN8.INV
#scpiCmd DIN8.INV txrx DIN8.INV (value)
#scpiCmd DIN9.FILTER? txrx? DIN9.FILTER
#scpiCmd DIN9.FILTER txrx DIN9.FILTER (value)
#scpiCmd DIN9.INV? txrx? DIN9.INV
#scpiCmd DIN9.INV txrx DIN9.INV (value)
#scpiCmd DIO1.DIR? txrx? DIO1.DIR
#scpiCmd DIO1.DIR txrx DIO1.DIR (value)
#scpiCmd DIO1.FILTER? txrx? DIO1.FILTER
#scpiCmd DIO1.FILTER txrx DIO1.FILTER (value)
#scpiCmd DIO1.INV? txrx? DIO1.INV
#scpiCmd DIO1.INV txrx DIO1.INV (value)
#scpiCmd DIO1.SOURCE? txrx? DIO1.SOURCE
#scpiCmd DIO1.SOURCE txrx DIO1.SOURCE (value)
#scpiCmd DIO1.SOURCEID? txrx? DIO1.SOURCEID
#scpiCmd DIO1.SOURCEID txrx DIO1.SOURCEID (value)
#scpiCmd DIO1.STATEU? txrx? DIO1.STATEU
#scpiCmd DIO1.STATEU txrx DIO1.STATEU (value)
#scpiCmd DIO1.TERM? txrx? DIO1.TERM
#scpiCmd DIO1.TERM txrx DIO1.TERM (value)
#scpiCmd DIO2.DIR? txrx? DIO2.DIR
#scpiCmd DIO2.DIR txrx DIO2.DIR (value)
#scpiCmd DIO2.FILTER? txrx? DIO2.FILTER
#scpiCmd DIO2.FILTER txrx DIO2.FILTER (value)
#scpiCmd DIO2.INV? txrx? DIO2.INV
#scpiCmd DIO2.INV txrx DIO2.INV (value)
#scpiCmd DIO2.SOURCE? txrx? DIO2.SOURCE
#scpiCmd DIO2.SOURCE txrx DIO2.SOURCE (value)
#scpiCmd DIO2.SOURCEID? txrx? DIO2.SOURCEID
#scpiCmd DIO2.SOURCEID txrx DIO2.SOURCEID (value)
#scpiCmd DIO2.STATEU? txrx? DIO2.STATEU
#scpiCmd DIO2.STATEU txrx DIO2.STATEU (value)
#scpiCmd DIO2.TERM? txrx? DIO2.TERM
#scpiCmd DIO2.TERM txrx DIO2.TERM (value)
#scpiCmd DIO3.DIR? txrx? DIO3.DIR
#scpiCmd DIO3.DIR txrx DIO3.DIR (value)
#scpiCmd DIO3.FILTER? txrx? DIO3.FILTER
#scpiCmd DIO3.FILTER txrx DIO3.FILTER (value)
#scpiCmd DIO3.INV? txrx? DIO3.INV
#scpiCmd DIO3.INV txrx DIO3.INV (value)
#scpiCmd DIO3.SOURCE? txrx? DIO3.SOURCE
#scpiCmd DIO3.SOURCE txrx DIO3.SOURCE (value)
#scpiCmd DIO3.SOURCEID? txrx? DIO3.SOURCEID
#scpiCmd DIO3.SOURCEID txrx DIO3.SOURCEID (value)
#scpiCmd DIO3.STATEU? txrx? DIO3.STATEU
#scpiCmd DIO3.STATEU txrx DIO3.STATEU (value)
#scpiCmd DIO3.TERM? txrx? DIO3.TERM
#scpiCmd DIO3.TERM txrx DIO3.TERM (value)
#scpiCmd DIO4.DIR? txrx? DIO4.DIR
#scpiCmd DIO4.DIR txrx DIO4.DIR (value)
#scpiCmd DIO4.FILTER? txrx? DIO4.FILTER
#scpiCmd DIO4.FILTER txrx DIO4.FILTER (value)
#scpiCmd DIO4.INV? txrx? DIO4.INV
#scpiCmd DIO4.INV txrx DIO4.INV (value)
#scpiCmd DIO4.SOURCE? txrx? DIO4.SOURCE
#scpiCmd DIO4.SOURCE txrx DIO4.SOURCE (value)
#scpiCmd DIO4.SOURCEID? txrx? DIO4.SOURCEID
#scpiCmd DIO4.SOURCEID txrx DIO4.SOURCEID (value)
#scpiCmd DIO4.STATEU? txrx? DIO4.STATEU
#scpiCmd DIO4.STATEU txrx DIO4.STATEU (value)
#scpiCmd DIO4.TERM? txrx? DIO4.TERM
#scpiCmd DIO4.TERM txrx DIO4.TERM (value)
#scpiCmd DIO5.DIR? txrx? DIO5.DIR
#scpiCmd DIO5.DIR txrx DIO5.DIR (value)
#scpiCmd DIO5.FILTER? txrx? DIO5.FILTER
#scpiCmd DIO5.FILTER txrx DIO5.FILTER (value)
#scpiCmd DIO5.INV? txrx? DIO5.INV
#scpiCmd DIO5.INV txrx DIO5.INV (value)
#scpiCmd DIO5.SOURCE? txrx? DIO5.SOURCE
#scpiCmd DIO5.SOURCE txrx DIO5.SOURCE (value)
#scpiCmd DIO5.SOURCEID? txrx? DIO5.SOURCEID
#scpiCmd DIO5.SOURCEID txrx DIO5.SOURCEID (value)
#scpiCmd DIO5.STATEU? txrx? DIO5.STATEU
#scpiCmd DIO5.STATEU txrx DIO5.STATEU (value)
#scpiCmd DIO5.TERM? txrx? DIO5.TERM
#scpiCmd DIO5.TERM txrx DIO5.TERM (value)
#scpiCmd DIO6.DIR? txrx? DIO6.DIR
#scpiCmd DIO6.DIR txrx DIO6.DIR (value)
#scpiCmd DIO6.FILTER? txrx? DIO6.FILTER
#scpiCmd DIO6.FILTER txrx DIO6.FILTER (value)
#scpiCmd DIO6.INV? txrx? DIO6.INV
#scpiCmd DIO6.INV txrx DIO6.INV (value)
#scpiCmd DIO6.SOURCE? txrx? DIO6.SOURCE
#scpiCmd DIO6.SOURCE txrx DIO6.SOURCE (value)
#scpiCmd DIO6.SOURCEID? txrx? DIO6.SOURCEID
#scpiCmd DIO6.SOURCEID txrx DIO6.SOURCEID (value)
#scpiCmd DIO6.STATEU? txrx? DIO6.STATEU
#scpiCmd DIO6.STATEU txrx DIO6.STATEU (value)
#scpiCmd DIO6.TERM? txrx? DIO6.TERM
#scpiCmd DIO6.TERM txrx DIO6.TERM (value)
#scpiCmd DOUT1.SOURCE? txrx? DOUT1.SOURCE
#scpiCmd DOUT1.SOURCE txrx DOUT1.SOURCE (value)
#scpiCmd DOUT1.SOURCEID? txrx? DOUT1.SOURCEID
#scpiCmd DOUT1.SOURCEID txrx DOUT1.SOURCEID (value)
#scpiCmd DOUT1.STATEU? txrx? DOUT1.STATEU
#scpiCmd DOUT1.STATEU txrx DOUT1.STATEU (value)
#scpiCmd DOUT2.SOURCE? txrx? DOUT2.SOURCE
#scpiCmd DOUT2.SOURCE txrx DOUT2.SOURCE (value)
#scpiCmd DOUT2.SOURCEID? txrx? DOUT2.SOURCEID
#scpiCmd DOUT2.SOURCEID txrx DOUT2.SOURCEID (value)
#scpiCmd DOUT2.STATEU? txrx? DOUT2.STATEU
#scpiCmd DOUT2.STATEU txrx DOUT2.STATEU (value)
#scpiCmd DOUT3.SOURCE? txrx? DOUT3.SOURCE
#scpiCmd DOUT3.SOURCE txrx DOUT3.SOURCE (value)
#scpiCmd DOUT3.SOURCEID? txrx? DOUT3.SOURCEID
#scpiCmd DOUT3.SOURCEID txrx DOUT3.SOURCEID (value)
#scpiCmd DOUT3.STATEU? txrx? DOUT3.STATEU
#scpiCmd DOUT3.STATEU txrx DOUT3.STATEU (value)
#scpiCmd DOUT4.SOURCE? txrx? DOUT4.SOURCE
#scpiCmd DOUT4.SOURCE txrx DOUT4.SOURCE (value)
#scpiCmd DOUT4.SOURCEID? txrx? DOUT4.SOURCEID
#scpiCmd DOUT4.SOURCEID txrx DOUT4.SOURCEID (value)
#scpiCmd DOUT4.STATEU? txrx? DOUT4.STATEU
#scpiCmd DOUT4.STATEU txrx DOUT4.STATEU (value)
#scpiCmd DOUT5.SOURCE? txrx? DOUT5.SOURCE
#scpiCmd DOUT5.SOURCE txrx DOUT5.SOURCE (value)
#scpiCmd DOUT5.SOURCEID? txrx? DOUT5.SOURCEID
#scpiCmd DOUT5.SOURCEID txrx DOUT5.SOURCEID (value)
#scpiCmd DOUT5.STATEU? txrx? DOUT5.STATEU
#scpiCmd DOUT5.STATEU txrx DOUT5.STATEU (value)
#scpiCmd DOUT6.SOURCE? txrx? DOUT6.SOURCE
#scpiCmd DOUT6.SOURCE txrx DOUT6.SOURCE (value)
#scpiCmd DOUT6.SOURCEID? txrx? DOUT6.SOURCEID
#scpiCmd DOUT6.SOURCEID txrx DOUT6.SOURCEID (value)
#scpiCmd DOUT6.STATEU? txrx? DOUT6.STATEU
#scpiCmd DOUT6.STATEU txrx DOUT6.STATEU (value)
#scpiCmd DOUT7.SOURCE? txrx? DOUT7.SOURCE
#scpiCmd DOUT7.SOURCE txrx DOUT7.SOURCE (value)
#scpiCmd DOUT7.SOURCEID? txrx? DOUT7.SOURCEID
#scpiCmd DOUT7.SOURCEID txrx DOUT7.SOURCEID (value)
#scpiCmd DOUT7.STATEU? txrx? DOUT7.STATEU
#scpiCmd DOUT7.STATEU txrx DOUT7.STATEU (value)
#scpiCmd DOUT8.SOURCE? txrx? DOUT8.SOURCE
#scpiCmd DOUT8.SOURCE txrx DOUT8.SOURCE (value)
#scpiCmd DOUT8.SOURCEID? txrx? DOUT8.SOURCEID
#scpiCmd DOUT8.SOURCEID txrx DOUT8.SOURCEID (value)
#scpiCmd DOUT8.STATEU? txrx? DOUT8.STATEU
#scpiCmd DOUT8.STATEU txrx DOUT8.STATEU (value)
#scpiCmd DOUT9.SOURCE? txrx? DOUT9.SOURCE
#scpiCmd DOUT9.SOURCE txrx DOUT9.SOURCE (value)
#scpiCmd DOUT9.SOURCEID? txrx? DOUT9.SOURCEID
#scpiCmd DOUT9.SOURCEID txrx DOUT9.SOURCEID (value)
#scpiCmd DOUT9.STATEU? txrx? DOUT9.STATEU
#scpiCmd DOUT9.STATEU txrx DOUT9.STATEU (value)
#scpiCmd DRV.CRASH txrx DRV.CRASH (value)
#scpiCmd DRV.CUSTOMIDENTIFIER? txrx? DRV.CUSTOMIDENTIFIER
#scpiCmd DRV.CUSTOMIDENTIFIER txrx DRV.CUSTOMIDENTIFIER (value)
#scpiCmd DRV.NAME? txrx? DRV.NAME
#scpiCmd DRV.NAME txrx DRV.NAME (value)
#scpiCmd DRV.NVVER? txrx? DRV.NVVER
#scpiCmd DRV.NVVER txrx DRV.NVVER (value)
#scpiCmd DRV.PWDFB txrx DRV.PWDFB (value)
#scpiCmd DRV.READFORMAT? txrx? DRV.READFORMAT
#scpiCmd DRV.READFORMAT txrx DRV.READFORMAT (value)
#scpiCmd DRV.REBOOT txrx DRV.REBOOT (value)
#scpiCmd DRV.SETUSERPWD txrx DRV.SETUSERPWD (value)
#scpiCmd ECAT.ALIAS? txrx? ECAT.ALIAS
#scpiCmd ECAT.ALIAS txrx ECAT.ALIAS (value)
#scpiCmd ECAT.ENEMCY? txrx? ECAT.ENEMCY
#scpiCmd ECAT.ENEMCY txrx ECAT.ENEMCY (value)
#scpiCmd ECAT.USEPLL? txrx? ECAT.USEPLL
#scpiCmd ECAT.USEPLL txrx ECAT.USEPLL (value)
#scpiCmd EEO1.DIR? txrx? EEO1.DIR
#scpiCmd EEO1.DIR txrx EEO1.DIR (value)
#scpiCmd EEO1.LINES? txrx? EEO1.LINES
#scpiCmd EEO1.LINES txrx EEO1.LINES (value)
#scpiCmd EEO1.MODE? txrx? EEO1.MODE
#scpiCmd EEO1.MODE txrx EEO1.MODE (value)
#scpiCmd EEO1.PULSEWIDTH? txrx? EEO1.PULSEWIDTH
#scpiCmd EEO1.PULSEWIDTH txrx EEO1.PULSEWIDTH (value)
#scpiCmd EEO1.SOURCE? txrx? EEO1.SOURCE
#scpiCmd EEO1.SOURCE txrx EEO1.SOURCE (value)
#scpiCmd EEO1.ZMODE? txrx? EEO1.ZMODE
#scpiCmd EEO1.ZMODE txrx EEO1.ZMODE (value)
#scpiCmd EEO1.ZOFFSET? txrx? EEO1.ZOFFSET
#scpiCmd EEO1.ZOFFSET txrx EEO1.ZOFFSET (value)
#scpiCmd EEO1.ZP? txrx? EEO1.ZP
#scpiCmd EEO1.ZP txrx EEO1.ZP (value)
#scpiCmd EEO2.DIR? txrx? EEO2.DIR
#scpiCmd EEO2.DIR txrx EEO2.DIR (value)
#scpiCmd EEO2.LINES? txrx? EEO2.LINES
#scpiCmd EEO2.LINES txrx EEO2.LINES (value)
#scpiCmd EEO2.MODE? txrx? EEO2.MODE
#scpiCmd EEO2.MODE txrx EEO2.MODE (value)
#scpiCmd EEO2.PULSEWIDTH? txrx? EEO2.PULSEWIDTH
#scpiCmd EEO2.PULSEWIDTH txrx EEO2.PULSEWIDTH (value)
#scpiCmd EEO2.SOURCE? txrx? EEO2.SOURCE
#scpiCmd EEO2.SOURCE txrx EEO2.SOURCE (value)

#scpiCmd FB3.BITS? txrx? FB3.BITS
#scpiCmd FB3.BITS txrx FB3.BITS (value)
#scpiCmd FB3.CALSINEGAIN? txrx? FB3.CALSINEGAIN
#scpiCmd FB3.CALSINEGAIN txrx FB3.CALSINEGAIN (value)
#scpiCmd FB3.CALTHRESH? txrx? FB3.CALTHRESH
#scpiCmd FB3.CALTHRESH txrx FB3.CALTHRESH (value)
#scpiCmd FB3.CMD? txrx? FB3.CMD
#scpiCmd FB3.CMD txrx FB3.CMD (value)
#scpiCmd FB3.ENCLINES? txrx? FB3.ENCLINES
#scpiCmd FB3.ENCLINES txrx FB3.ENCLINES (value)
#scpiCmd FB3.FILT.LAG? txrx? FB3.FILT.LAG
#scpiCmd FB3.FILT.LAG txrx FB3.FILT.LAG (value)
#scpiCmd FB3.LASTIDENTIFIED? txrx? FB3.LASTIDENTIFIED
#scpiCmd FB3.LASTIDENTIFIED txrx FB3.LASTIDENTIFIED (value)
#scpiCmd FB3.LINEPITCH? txrx? FB3.LINEPITCH
#scpiCmd FB3.LINEPITCH txrx FB3.LINEPITCH (value)
#scpiCmd FB3.MECHTYPE? txrx? FB3.MECHTYPE
#scpiCmd FB3.MECHTYPE txrx FB3.MECHTYPE (value)
#scpiCmd FB3.MULTITURNBITS? txrx? FB3.MULTITURNBITS
#scpiCmd FB3.MULTITURNBITS txrx FB3.MULTITURNBITS (value)
#scpiCmd FB3.ON? txrx? FB3.ON
#scpiCmd FB3.ON txrx FB3.ON (value)
#scpiCmd FB3.POLES? txrx? FB3.POLES
#scpiCmd FB3.POLES txrx FB3.POLES (value)
#scpiCmd FB3.RESKTR? txrx? FB3.RESKTR
#scpiCmd FB3.RESKTR txrx FB3.RESKTR (value)
#scpiCmd FB3.RESREFPHASE? txrx? FB3.RESREFPHASE
#scpiCmd FB3.RESREFPHASE txrx FB3.RESREFPHASE (value)
#scpiCmd FB3.RID? txrx? FB3.RID
#scpiCmd FB3.RID txrx FB3.RID (value)
#scpiCmd FB3.SELECT? txrx? FB3.SELECT
#scpiCmd FB3.SELECT txrx FB3.SELECT (value)
#scpiCmd FB3.SINGLETURNBITS? txrx? FB3.SINGLETURNBITS
#scpiCmd FB3.SINGLETURNBITS txrx FB3.SINGLETURNBITS (value)
#scpiCmd FB3.TRACKINGCAL? txrx? FB3.TRACKINGCAL
#scpiCmd FB3.TRACKINGCAL txrx FB3.TRACKINGCAL (value)
#scpiCmd FB4.BITS? txrx? FB4.BITS
#scpiCmd FB4.BITS txrx FB4.BITS (value)
#scpiCmd FB4.CALSINEGAIN? txrx? FB4.CALSINEGAIN
#scpiCmd FB4.CALSINEGAIN txrx FB4.CALSINEGAIN (value)
#scpiCmd FB4.CALTHRESH? txrx? FB4.CALTHRESH
#scpiCmd FB4.CALTHRESH txrx FB4.CALTHRESH (value)
#scpiCmd FB4.CMD? txrx? FB4.CMD
#scpiCmd FB4.CMD txrx FB4.CMD (value)
#scpiCmd FB4.ENCLINES? txrx? FB4.ENCLINES
#scpiCmd FB4.ENCLINES txrx FB4.ENCLINES (value)
#scpiCmd FB4.FILT.LAG? txrx? FB4.FILT.LAG
#scpiCmd FB4.FILT.LAG txrx FB4.FILT.LAG (value)
#scpiCmd FB4.LASTIDENTIFIED? txrx? FB4.LASTIDENTIFIED
#scpiCmd FB4.LASTIDENTIFIED txrx FB4.LASTIDENTIFIED (value)
#scpiCmd FB4.LINEPITCH? txrx? FB4.LINEPITCH
#scpiCmd FB4.LINEPITCH txrx FB4.LINEPITCH (value)
#scpiCmd FB4.MECHTYPE? txrx? FB4.MECHTYPE
#scpiCmd FB4.MECHTYPE txrx FB4.MECHTYPE (value)
#scpiCmd FB4.MULTITURNBITS? txrx? FB4.MULTITURNBITS
#scpiCmd FB4.MULTITURNBITS txrx FB4.MULTITURNBITS (value)
#scpiCmd FB4.ON? txrx? FB4.ON
#scpiCmd FB4.ON txrx FB4.ON (value)
#scpiCmd FB4.POLES? txrx? FB4.POLES
#scpiCmd FB4.POLES txrx FB4.POLES (value)
#scpiCmd FB4.RESKTR? txrx? FB4.RESKTR
#scpiCmd FB4.RESKTR txrx FB4.RESKTR (value)
#scpiCmd FB4.RESREFPHASE? txrx? FB4.RESREFPHASE
#scpiCmd FB4.RESREFPHASE txrx FB4.RESREFPHASE (value)
#scpiCmd FB4.RID? txrx? FB4.RID
#scpiCmd FB4.RID txrx FB4.RID (value)
#scpiCmd FB4.SELECT? txrx? FB4.SELECT
#scpiCmd FB4.SELECT txrx FB4.SELECT (value)
#scpiCmd FB4.SINGLETURNBITS? txrx? FB4.SINGLETURNBITS
#scpiCmd FB4.SINGLETURNBITS txrx FB4.SINGLETURNBITS (value)
#scpiCmd FB4.TRACKINGCAL? txrx? FB4.TRACKINGCAL
#scpiCmd FB4.TRACKINGCAL txrx FB4.TRACKINGCAL (value)
#scpiCmd FB5.BITS? txrx? FB5.BITS
#scpiCmd FB5.BITS txrx FB5.BITS (value)
#scpiCmd FB5.CALSINEGAIN? txrx? FB5.CALSINEGAIN
#scpiCmd FB5.CALSINEGAIN txrx FB5.CALSINEGAIN (value)
#scpiCmd FB5.CALTHRESH? txrx? FB5.CALTHRESH
#scpiCmd FB5.CALTHRESH txrx FB5.CALTHRESH (value)
#scpiCmd FB5.CMD? txrx? FB5.CMD
#scpiCmd FB5.CMD txrx FB5.CMD (value)
#scpiCmd FB5.ENCLINES? txrx? FB5.ENCLINES
#scpiCmd FB5.ENCLINES txrx FB5.ENCLINES (value)
#scpiCmd FB5.FILT.LAG? txrx? FB5.FILT.LAG
#scpiCmd FB5.FILT.LAG txrx FB5.FILT.LAG (value)
#scpiCmd FB5.LASTIDENTIFIED? txrx? FB5.LASTIDENTIFIED
#scpiCmd FB5.LASTIDENTIFIED txrx FB5.LASTIDENTIFIED (value)
#scpiCmd FB5.LINEPITCH? txrx? FB5.LINEPITCH
#scpiCmd FB5.LINEPITCH txrx FB5.LINEPITCH (value)
#scpiCmd FB5.MECHTYPE? txrx? FB5.MECHTYPE
#scpiCmd FB5.MECHTYPE txrx FB5.MECHTYPE (value)
#scpiCmd FB5.MULTITURNBITS? txrx? FB5.MULTITURNBITS
#scpiCmd FB5.MULTITURNBITS txrx FB5.MULTITURNBITS (value)
#scpiCmd FB5.ON? txrx? FB5.ON
#scpiCmd FB5.ON txrx FB5.ON (value)
#scpiCmd FB5.POLES? txrx? FB5.POLES
#scpiCmd FB5.POLES txrx FB5.POLES (value)
#scpiCmd FB5.RESKTR? txrx? FB5.RESKTR
#scpiCmd FB5.RESKTR txrx FB5.RESKTR (value)
#scpiCmd FB5.RESREFPHASE? txrx? FB5.RESREFPHASE
#scpiCmd FB5.RESREFPHASE txrx FB5.RESREFPHASE (value)
#scpiCmd FB5.RID? txrx? FB5.RID
#scpiCmd FB5.RID txrx FB5.RID (value)
#scpiCmd FB5.SELECT? txrx? FB5.SELECT
#scpiCmd FB5.SELECT txrx FB5.SELECT (value)
#scpiCmd FB5.SINGLETURNBITS? txrx? FB5.SINGLETURNBITS
#scpiCmd FB5.SINGLETURNBITS txrx FB5.SINGLETURNBITS (value)
#scpiCmd FB5.TRACKINGCAL? txrx? FB5.TRACKINGCAL
#scpiCmd FB5.TRACKINGCAL txrx FB5.TRACKINGCAL (value)
#scpiCmd FBUS.AOUT1.VALUE? txrx? FBUS.AOUT1.VALUE
#scpiCmd FBUS.AOUT1.VALUE txrx FBUS.AOUT1.VALUE (value)
#scpiCmd FBUS.AOUT2.VALUE? txrx? FBUS.AOUT2.VALUE
#scpiCmd FBUS.AOUT2.VALUE txrx FBUS.AOUT2.VALUE (value)
#scpiCmd FBUS.DOUT.STATES? txrx? FBUS.DOUT.STATES
#scpiCmd FBUS.DOUT.STATES txrx FBUS.DOUT.STATES (value)
#scpiCmd IP.DEFAULTINTERFACE? txrx? IP.DEFAULTINTERFACE
#scpiCmd IP.DEFAULTINTERFACE txrx IP.DEFAULTINTERFACE (value)
#scpiCmd IP.MODE? txrx? IP.MODE
#scpiCmd IP.MODE txrx IP.MODE (value)
#scpiCmd IP.PROTOCOL? txrx? IP.PROTOCOL
#scpiCmd IP.PROTOCOL txrx IP.PROTOCOL (value)
#scpiCmd LOG.SOURCE? txrx? LOG.SOURCE
#scpiCmd LOG.SOURCE txrx LOG.SOURCE (value)
#scpiCmd MODBUS.EN? txrx? MODBUS.EN
#scpiCmd MODBUS.EN txrx MODBUS.EN (value)
#scpiCmd MODBUS.ENDIAN? txrx? MODBUS.ENDIAN
#scpiCmd MODBUS.ENDIAN txrx MODBUS.ENDIAN (value)
#scpiCmd MODBUS.ERRORMODE? txrx? MODBUS.ERRORMODE
#scpiCmd MODBUS.ERRORMODE txrx MODBUS.ERRORMODE (value)
#scpiCmd MODBUS.KEEPALIVE? txrx? MODBUS.KEEPALIVE
#scpiCmd MODBUS.KEEPALIVE txrx MODBUS.KEEPALIVE (value)
#scpiCmd MODBUS.MSGLOG? txrx? MODBUS.MSGLOG
#scpiCmd MODBUS.MSGLOG txrx MODBUS.MSGLOG (value)
#scpiCmd MODBUS.WATCHDOG? txrx? MODBUS.WATCHDOG
#scpiCmd MODBUS.WATCHDOG txrx MODBUS.WATCHDOG (value)
#scpiCmd MW.MODEL1.STATE? txrx? MW.MODEL1.STATE
#scpiCmd MW.MODEL1.STATE txrx MW.MODEL1.STATE (value)
#scpiCmd MW.MODEL6.STATE? txrx? MW.MODEL6.STATE
#scpiCmd MW.MODEL6.STATE txrx MW.MODEL6.STATE (value)
#scpiCmd MW.USERBUFFER? txrx? MW.USERBUFFER
#scpiCmd MW.USERBUFFER txrx MW.USERBUFFER (value)
#scpiCmd POWER1.MONITORCONFIG? txrx? POWER1.MONITORCONFIG
#scpiCmd POWER1.MONITORCONFIG txrx POWER1.MONITORCONFIG (value)
#scpiCmd POWER1.MONITORVALUE? txrx? POWER1.MONITORVALUE
#scpiCmd POWER1.MONITORVALUE txrx POWER1.MONITORVALUE (value)
#scpiCmd REC.CH1? txrx? REC.CH1
#scpiCmd REC.CH1 txrx REC.CH1 (value)
#scpiCmd REC.CH2? txrx? REC.CH2
#scpiCmd REC.CH2 txrx REC.CH2 (value)
#scpiCmd REC.CH3? txrx? REC.CH3
#scpiCmd REC.CH3 txrx REC.CH3 (value)
#scpiCmd REC.CH4? txrx? REC.CH4
#scpiCmd REC.CH4 txrx REC.CH4 (value)
#scpiCmd REC.CH5? txrx? REC.CH5
#scpiCmd REC.CH5 txrx REC.CH5 (value)
#scpiCmd REC.CH6? txrx? REC.CH6
#scpiCmd REC.CH6 txrx REC.CH6 (value)
#scpiCmd REC.GAP? txrx? REC.GAP
#scpiCmd REC.GAP txrx REC.GAP (value)
#scpiCmd REC.NUMPOINTS? txrx? REC.NUMPOINTS
#scpiCmd REC.NUMPOINTS txrx REC.NUMPOINTS (value)
#scpiCmd REC.RETRIEVEFRMT? txrx? REC.RETRIEVEFRMT
#scpiCmd REC.RETRIEVEFRMT txrx REC.RETRIEVEFRMT (value)
#scpiCmd REC.RETRIEVESIZE? txrx? REC.RETRIEVESIZE
#scpiCmd REC.RETRIEVESIZE txrx REC.RETRIEVESIZE (value)
#scpiCmd REC.STOPTYPE? txrx? REC.STOPTYPE
#scpiCmd REC.STOPTYPE txrx REC.STOPTYPE (value)
#scpiCmd REC.TRIGMASK? txrx? REC.TRIGMASK
#scpiCmd REC.TRIGMASK txrx REC.TRIGMASK (value)
#scpiCmd REC.TRIGPARAM? txrx? REC.TRIGPARAM
#scpiCmd REC.TRIGPARAM txrx REC.TRIGPARAM (value)
#scpiCmd REC.TRIGPOS? txrx? REC.TRIGPOS
#scpiCmd REC.TRIGPOS txrx REC.TRIGPOS (value)
#scpiCmd REC.TRIGSLOPE? txrx? REC.TRIGSLOPE
#scpiCmd REC.TRIGSLOPE txrx REC.TRIGSLOPE (value)
#scpiCmd REC.TRIGTYPE? txrx? REC.TRIGTYPE
#scpiCmd REC.TRIGTYPE txrx REC.TRIGTYPE (value)
#scpiCmd REC.TRIGVAL? txrx? REC.TRIGVAL
#scpiCmd REC.TRIGVAL txrx REC.TRIGVAL (value)
#scpiCmd REGEN.REXT? txrx? REGEN.REXT
#scpiCmd REGEN.REXT txrx REGEN.REXT (value)
#scpiCmd REGEN.TEXT? txrx? REGEN.TEXT
#scpiCmd REGEN.TEXT txrx REGEN.TEXT (value)
#scpiCmd REGEN.TYPE? txrx? REGEN.TYPE
#scpiCmd REGEN.TYPE txrx REGEN.TYPE (value)
#scpiCmd REGEN.WATTEXT? txrx? REGEN.WATTEXT
#scpiCmd REGEN.WATTEXT txrx REGEN.WATTEXT (value)
#scpiCmd SEQ1.EVENT1.STATE? txrx? SEQ1.EVENT1.STATE
#scpiCmd SEQ1.EVENT1.STATE txrx SEQ1.EVENT1.STATE (value)
#scpiCmd SEQ1.EVENT10.STATE? txrx? SEQ1.EVENT10.STATE
#scpiCmd SEQ1.EVENT10.STATE txrx SEQ1.EVENT10.STATE (value)
#scpiCmd SEQ1.EVENT11.STATE? txrx? SEQ1.EVENT11.STATE
#scpiCmd SEQ1.EVENT11.STATE txrx SEQ1.EVENT11.STATE (value)
#scpiCmd SEQ1.EVENT12.STATE? txrx? SEQ1.EVENT12.STATE
#scpiCmd SEQ1.EVENT12.STATE txrx SEQ1.EVENT12.STATE (value)
#scpiCmd SEQ1.EVENT13.STATE? txrx? SEQ1.EVENT13.STATE
#scpiCmd SEQ1.EVENT13.STATE txrx SEQ1.EVENT13.STATE (value)
#scpiCmd SEQ1.EVENT14.STATE? txrx? SEQ1.EVENT14.STATE
#scpiCmd SEQ1.EVENT14.STATE txrx SEQ1.EVENT14.STATE (value)
#scpiCmd SEQ1.EVENT15.STATE? txrx? SEQ1.EVENT15.STATE
#scpiCmd SEQ1.EVENT15.STATE txrx SEQ1.EVENT15.STATE (value)
#scpiCmd SEQ1.EVENT16.STATE? txrx? SEQ1.EVENT16.STATE
#scpiCmd SEQ1.EVENT16.STATE txrx SEQ1.EVENT16.STATE (value)
#scpiCmd SEQ1.EVENT17.STATE? txrx? SEQ1.EVENT17.STATE
#scpiCmd SEQ1.EVENT17.STATE txrx SEQ1.EVENT17.STATE (value)
#scpiCmd SEQ1.EVENT18.STATE? txrx? SEQ1.EVENT18.STATE
#scpiCmd SEQ1.EVENT18.STATE txrx SEQ1.EVENT18.STATE (value)
#scpiCmd SEQ1.EVENT19.STATE? txrx? SEQ1.EVENT19.STATE
#scpiCmd SEQ1.EVENT19.STATE txrx SEQ1.EVENT19.STATE (value)
#scpiCmd SEQ1.EVENT2.STATE? txrx? SEQ1.EVENT2.STATE
#scpiCmd SEQ1.EVENT2.STATE txrx SEQ1.EVENT2.STATE (value)
#scpiCmd SEQ1.EVENT20.STATE? txrx? SEQ1.EVENT20.STATE
#scpiCmd SEQ1.EVENT20.STATE txrx SEQ1.EVENT20.STATE (value)
#scpiCmd SEQ1.EVENT21.STATE? txrx? SEQ1.EVENT21.STATE
#scpiCmd SEQ1.EVENT21.STATE txrx SEQ1.EVENT21.STATE (value)
#scpiCmd SEQ1.EVENT22.STATE? txrx? SEQ1.EVENT22.STATE
#scpiCmd SEQ1.EVENT22.STATE txrx SEQ1.EVENT22.STATE (value)
#scpiCmd SEQ1.EVENT23.STATE? txrx? SEQ1.EVENT23.STATE
#scpiCmd SEQ1.EVENT23.STATE txrx SEQ1.EVENT23.STATE (value)
#scpiCmd SEQ1.EVENT24.STATE? txrx? SEQ1.EVENT24.STATE
#scpiCmd SEQ1.EVENT24.STATE txrx SEQ1.EVENT24.STATE (value)
#scpiCmd SEQ1.EVENT25.STATE? txrx? SEQ1.EVENT25.STATE
#scpiCmd SEQ1.EVENT25.STATE txrx SEQ1.EVENT25.STATE (value)
#scpiCmd SEQ1.EVENT26.STATE? txrx? SEQ1.EVENT26.STATE
#scpiCmd SEQ1.EVENT26.STATE txrx SEQ1.EVENT26.STATE (value)
#scpiCmd SEQ1.EVENT27.STATE? txrx? SEQ1.EVENT27.STATE
#scpiCmd SEQ1.EVENT27.STATE txrx SEQ1.EVENT27.STATE (value)
#scpiCmd SEQ1.EVENT28.STATE? txrx? SEQ1.EVENT28.STATE
#scpiCmd SEQ1.EVENT28.STATE txrx SEQ1.EVENT28.STATE (value)
#scpiCmd SEQ1.EVENT29.STATE? txrx? SEQ1.EVENT29.STATE
#scpiCmd SEQ1.EVENT29.STATE txrx SEQ1.EVENT29.STATE (value)
#scpiCmd SEQ1.EVENT3.STATE? txrx? SEQ1.EVENT3.STATE
#scpiCmd SEQ1.EVENT3.STATE txrx SEQ1.EVENT3.STATE (value)
#scpiCmd SEQ1.EVENT30.STATE? txrx? SEQ1.EVENT30.STATE
#scpiCmd SEQ1.EVENT30.STATE txrx SEQ1.EVENT30.STATE (value)
#scpiCmd SEQ1.EVENT31.STATE? txrx? SEQ1.EVENT31.STATE
#scpiCmd SEQ1.EVENT31.STATE txrx SEQ1.EVENT31.STATE (value)
#scpiCmd SEQ1.EVENT32.STATE? txrx? SEQ1.EVENT32.STATE
#scpiCmd SEQ1.EVENT32.STATE txrx SEQ1.EVENT32.STATE (value)
#scpiCmd SEQ1.EVENT4.STATE? txrx? SEQ1.EVENT4.STATE
#scpiCmd SEQ1.EVENT4.STATE txrx SEQ1.EVENT4.STATE (value)
#scpiCmd SEQ1.EVENT5.STATE? txrx? SEQ1.EVENT5.STATE
#scpiCmd SEQ1.EVENT5.STATE txrx SEQ1.EVENT5.STATE (value)
#scpiCmd SEQ1.EVENT6.STATE? txrx? SEQ1.EVENT6.STATE
#scpiCmd SEQ1.EVENT6.STATE txrx SEQ1.EVENT6.STATE (value)
#scpiCmd SEQ1.EVENT7.STATE? txrx? SEQ1.EVENT7.STATE
#scpiCmd SEQ1.EVENT7.STATE txrx SEQ1.EVENT7.STATE (value)
#scpiCmd SEQ1.EVENT8.STATE? txrx? SEQ1.EVENT8.STATE
#scpiCmd SEQ1.EVENT8.STATE txrx SEQ1.EVENT8.STATE (value)
#scpiCmd SEQ1.EVENT9.STATE? txrx? SEQ1.EVENT9.STATE
#scpiCmd SEQ1.EVENT9.STATE txrx SEQ1.EVENT9.STATE (value)
#scpiCmd SEQ1.STATE? txrx? SEQ1.STATE
#scpiCmd SEQ1.STATE txrx SEQ1.STATE (value)
#scpiCmd SEQ1.TASKERRORACTION? txrx? SEQ1.TASKERRORACTION
#scpiCmd SEQ1.TASKERRORACTION txrx SEQ1.TASKERRORACTION (value)
#scpiCmd SEQ1.TASKERRORSTATE? txrx? SEQ1.TASKERRORSTATE
#scpiCmd SEQ1.TASKERRORSTATE txrx SEQ1.TASKERRORSTATE (value)
#scpiCmd SFA1.PRINTEDS? txrx? SFA1.PRINTEDS
#scpiCmd SFA1.PRINTEDS txrx SFA1.PRINTEDS (value)
#scpiCmd SFA1.PROGRAMEDS txrx SFA1.PROGRAMEDS (value)
#scpiCmd SFA2.PRINTEDS? txrx? SFA2.PRINTEDS
#scpiCmd SFA2.PRINTEDS txrx SFA2.PRINTEDS (value)
#scpiCmd SFA2.PROGRAMEDS txrx SFA2.PROGRAMEDS (value)
#scpiCmd TEST.CLEARPRODMODEMSG? txrx? TEST.CLEARPRODMODEMSG
#scpiCmd TEST.CLEARPRODMODEMSG txrx TEST.CLEARPRODMODEMSG (value)
#scpiCmd TEST.DISPLAY? txrx? TEST.DISPLAY
#scpiCmd TEST.DISPLAY txrx TEST.DISPLAY (value)
#scpiCmd TEST.EMM1? txrx? TEST.EMM1
#scpiCmd TEST.EMM1 txrx TEST.EMM1 (value)
#scpiCmd TEST.EMM2? txrx? TEST.EMM2
#scpiCmd TEST.EMM2 txrx TEST.EMM2 (value)
#scpiCmd TEST.FANDUTYCYCLE? txrx? TEST.FANDUTYCYCLE
#scpiCmd TEST.FANDUTYCYCLE txrx TEST.FANDUTYCYCLE (value)
#scpiCmd TEST.GATE.PATTERN? txrx? TEST.GATE.PATTERN
#scpiCmd TEST.GATE.PATTERN txrx TEST.GATE.PATTERN (value)
#scpiCmd TEST.MODE? txrx? TEST.MODE
#scpiCmd TEST.MODE txrx TEST.MODE (value)
#scpiCmd TEST.REGEN? txrx? TEST.REGEN
#scpiCmd TEST.REGEN txrx TEST.REGEN (value)
#scpiCmd TEST.RMM1? txrx? TEST.RMM1
#scpiCmd TEST.RMM1 txrx TEST.RMM1 (value)
#scpiCmd USER.INT1? txrx? USER.INT1
#scpiCmd USER.INT1 txrx USER.INT1 (value)
#scpiCmd USER.INT10? txrx? USER.INT10
#scpiCmd USER.INT10 txrx USER.INT10 (value)
#scpiCmd USER.INT2? txrx? USER.INT2
#scpiCmd USER.INT2 txrx USER.INT2 (value)
#scpiCmd USER.INT3? txrx? USER.INT3
#scpiCmd USER.INT3 txrx USER.INT3 (value)
#scpiCmd USER.INT4? txrx? USER.INT4
#scpiCmd USER.INT4 txrx USER.INT4 (value)
#scpiCmd USER.INT5? txrx? USER.INT5
#scpiCmd USER.INT5 txrx USER.INT5 (value)
#scpiCmd USER.INT6? txrx? USER.INT6
#scpiCmd USER.INT6 txrx USER.INT6 (value)
#scpiCmd USER.INT7? txrx? USER.INT7
#scpiCmd USER.INT7 txrx USER.INT7 (value)
#scpiCmd USER.INT8? txrx? USER.INT8
#scpiCmd USER.INT8 txrx USER.INT8 (value)
#scpiCmd USER.INT9? txrx? USER.INT9
#scpiCmd USER.INT9 txrx USER.INT9 (value)
#scpiCmd VBUS.ACNOMINAL? txrx? VBUS.ACNOMINAL
#scpiCmd VBUS.ACNOMINAL txrx VBUS.ACNOMINAL (value)
#scpiCmd VBUS.DCNOMINAL? txrx? VBUS.DCNOMINAL
#scpiCmd VBUS.DCNOMINAL txrx VBUS.DCNOMINAL (value)
#scpiCmd VBUS.DCOPERATION? txrx? VBUS.DCOPERATION
#scpiCmd VBUS.DCOPERATION txrx VBUS.DCOPERATION (value)
#scpiCmd VBUS.INRUSHOFF? txrx? VBUS.INRUSHOFF
#scpiCmd VBUS.INRUSHOFF txrx VBUS.INRUSHOFF (value)
#scpiCmd VBUS.INRUSHON? txrx? VBUS.INRUSHON
#scpiCmd VBUS.INRUSHON txrx VBUS.INRUSHON (value)
#scpiCmd VBUS.OVFTHRESH? txrx? VBUS.OVFTHRESH
#scpiCmd VBUS.OVFTHRESH txrx VBUS.OVFTHRESH (value)
#scpiCmd VBUS.OVWTHRESH? txrx? VBUS.OVWTHRESH
#scpiCmd VBUS.OVWTHRESH txrx VBUS.OVWTHRESH (value)
#scpiCmd VBUS.THREEPHASE? txrx? VBUS.THREEPHASE
#scpiCmd VBUS.THREEPHASE txrx VBUS.THREEPHASE (value)
#scpiCmd VBUS.UVFTHRESH? txrx? VBUS.UVFTHRESH
#scpiCmd VBUS.UVFTHRESH txrx VBUS.UVFTHRESH (value)
#scpiCmd VBUS.UVMODE? txrx? VBUS.UVMODE
#scpiCmd VBUS.UVMODE txrx VBUS.UVMODE (value)
#scpiCmd VBUS.UVWTHRESH? txrx? VBUS.UVWTHRESH
#scpiCmd VBUS.UVWTHRESH txrx VBUS.UVWTHRESH (value)
#scpiCmd X22.MODE? txrx? X22.MODE
#scpiCmd X22.MODE txrx X22.MODE (value)


;*************Below are Read Write AXIS1 parameters

#scpiCmd AXIS1.CANOPEN.ACCSCALEDENOM? txrx? AXIS1.CANOPEN.ACCSCALEDENOM
#scpiCmd AXIS1.CANOPEN.ACCSCALEDENOM txrx AXIS1.CANOPEN.ACCSCALEDENOM (value)
#scpiCmd AXIS1.CANOPEN.ACCSCALENUM? txrx? AXIS1.CANOPEN.ACCSCALENUM
#scpiCmd AXIS1.CANOPEN.ACCSCALENUM txrx AXIS1.CANOPEN.ACCSCALENUM (value)
#scpiCmd AXIS1.CANOPEN.FC1.FEED? txrx? AXIS1.CANOPEN.FC1.FEED
#scpiCmd AXIS1.CANOPEN.FC1.FEED txrx AXIS1.CANOPEN.FC1.FEED (value)
#scpiCmd AXIS1.CANOPEN.FC1.SHAFTREV? txrx? AXIS1.CANOPEN.FC1.SHAFTREV
#scpiCmd AXIS1.CANOPEN.FC1.SHAFTREV txrx AXIS1.CANOPEN.FC1.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.FC2.FEED? txrx? AXIS1.CANOPEN.FC2.FEED
#scpiCmd AXIS1.CANOPEN.FC2.FEED txrx AXIS1.CANOPEN.FC2.FEED (value)
#scpiCmd AXIS1.CANOPEN.FC2.SHAFTREV? txrx? AXIS1.CANOPEN.FC2.SHAFTREV
#scpiCmd AXIS1.CANOPEN.FC2.SHAFTREV txrx AXIS1.CANOPEN.FC2.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.FC3.FEED? txrx? AXIS1.CANOPEN.FC3.FEED
#scpiCmd AXIS1.CANOPEN.FC3.FEED txrx AXIS1.CANOPEN.FC3.FEED (value)
#scpiCmd AXIS1.CANOPEN.FC3.SHAFTREV? txrx? AXIS1.CANOPEN.FC3.SHAFTREV
#scpiCmd AXIS1.CANOPEN.FC3.SHAFTREV txrx AXIS1.CANOPEN.FC3.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.FC4.FEED? txrx? AXIS1.CANOPEN.FC4.FEED
#scpiCmd AXIS1.CANOPEN.FC4.FEED txrx AXIS1.CANOPEN.FC4.FEED (value)
#scpiCmd AXIS1.CANOPEN.FC4.SHAFTREV? txrx? AXIS1.CANOPEN.FC4.SHAFTREV
#scpiCmd AXIS1.CANOPEN.FC4.SHAFTREV txrx AXIS1.CANOPEN.FC4.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.FC5.FEED? txrx? AXIS1.CANOPEN.FC5.FEED
#scpiCmd AXIS1.CANOPEN.FC5.FEED txrx AXIS1.CANOPEN.FC5.FEED (value)
#scpiCmd AXIS1.CANOPEN.FC5.SHAFTREV? txrx? AXIS1.CANOPEN.FC5.SHAFTREV
#scpiCmd AXIS1.CANOPEN.FC5.SHAFTREV txrx AXIS1.CANOPEN.FC5.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.FCPRIMARY.FEED? txrx? AXIS1.CANOPEN.FCPRIMARY.FEED
#scpiCmd AXIS1.CANOPEN.FCPRIMARY.FEED txrx AXIS1.CANOPEN.FCPRIMARY.FEED (value)
#scpiCmd AXIS1.CANOPEN.FCPRIMARY.SHAFTREV? txrx? AXIS1.CANOPEN.FCPRIMARY.SHAFTREV
#scpiCmd AXIS1.CANOPEN.FCPRIMARY.SHAFTREV txrx AXIS1.CANOPEN.FCPRIMARY.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR1.MOTORREV? txrx? AXIS1.CANOPEN.GEAR1.MOTORREV
#scpiCmd AXIS1.CANOPEN.GEAR1.MOTORREV txrx AXIS1.CANOPEN.GEAR1.MOTORREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR1.SHAFTREV? txrx? AXIS1.CANOPEN.GEAR1.SHAFTREV
#scpiCmd AXIS1.CANOPEN.GEAR1.SHAFTREV txrx AXIS1.CANOPEN.GEAR1.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR2.MOTORREV? txrx? AXIS1.CANOPEN.GEAR2.MOTORREV
#scpiCmd AXIS1.CANOPEN.GEAR2.MOTORREV txrx AXIS1.CANOPEN.GEAR2.MOTORREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR2.SHAFTREV? txrx? AXIS1.CANOPEN.GEAR2.SHAFTREV
#scpiCmd AXIS1.CANOPEN.GEAR2.SHAFTREV txrx AXIS1.CANOPEN.GEAR2.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR3.MOTORREV? txrx? AXIS1.CANOPEN.GEAR3.MOTORREV
#scpiCmd AXIS1.CANOPEN.GEAR3.MOTORREV txrx AXIS1.CANOPEN.GEAR3.MOTORREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR3.SHAFTREV? txrx? AXIS1.CANOPEN.GEAR3.SHAFTREV
#scpiCmd AXIS1.CANOPEN.GEAR3.SHAFTREV txrx AXIS1.CANOPEN.GEAR3.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR4.MOTORREV? txrx? AXIS1.CANOPEN.GEAR4.MOTORREV
#scpiCmd AXIS1.CANOPEN.GEAR4.MOTORREV txrx AXIS1.CANOPEN.GEAR4.MOTORREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR4.SHAFTREV? txrx? AXIS1.CANOPEN.GEAR4.SHAFTREV
#scpiCmd AXIS1.CANOPEN.GEAR4.SHAFTREV txrx AXIS1.CANOPEN.GEAR4.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR5.MOTORREV? txrx? AXIS1.CANOPEN.GEAR5.MOTORREV
#scpiCmd AXIS1.CANOPEN.GEAR5.MOTORREV txrx AXIS1.CANOPEN.GEAR5.MOTORREV (value)
#scpiCmd AXIS1.CANOPEN.GEAR5.SHAFTREV? txrx? AXIS1.CANOPEN.GEAR5.SHAFTREV
#scpiCmd AXIS1.CANOPEN.GEAR5.SHAFTREV txrx AXIS1.CANOPEN.GEAR5.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.GEARPRIMARY.MOTORREV? txrx? AXIS1.CANOPEN.GEARPRIMARY.MOTORREV
#scpiCmd AXIS1.CANOPEN.GEARPRIMARY.MOTORREV txrx AXIS1.CANOPEN.GEARPRIMARY.MOTORREV (value)
#scpiCmd AXIS1.CANOPEN.GEARPRIMARY.SHAFTREV? txrx? AXIS1.CANOPEN.GEARPRIMARY.SHAFTREV
#scpiCmd AXIS1.CANOPEN.GEARPRIMARY.SHAFTREV txrx AXIS1.CANOPEN.GEARPRIMARY.SHAFTREV (value)
#scpiCmd AXIS1.CANOPEN.INTERPOLATEMODE? txrx? AXIS1.CANOPEN.INTERPOLATEMODE
#scpiCmd AXIS1.CANOPEN.INTERPOLATEMODE txrx AXIS1.CANOPEN.INTERPOLATEMODE (value)
#scpiCmd AXIS1.CANOPEN.PERRMODE? txrx? AXIS1.CANOPEN.PERRMODE
#scpiCmd AXIS1.CANOPEN.PERRMODE txrx AXIS1.CANOPEN.PERRMODE (value)
#scpiCmd AXIS1.CANOPEN.PSCALE? txrx? AXIS1.CANOPEN.PSCALE
#scpiCmd AXIS1.CANOPEN.PSCALE txrx AXIS1.CANOPEN.PSCALE (value)
#scpiCmd AXIS1.CANOPEN.STATUSEDGETIME? txrx? AXIS1.CANOPEN.STATUSEDGETIME
#scpiCmd AXIS1.CANOPEN.STATUSEDGETIME txrx AXIS1.CANOPEN.STATUSEDGETIME (value)
#scpiCmd AXIS1.CANOPEN.VELSCALEDENOM? txrx? AXIS1.CANOPEN.VELSCALEDENOM
#scpiCmd AXIS1.CANOPEN.VELSCALEDENOM txrx AXIS1.CANOPEN.VELSCALEDENOM (value)
#scpiCmd AXIS1.CANOPEN.VELSCALENUM? txrx? AXIS1.CANOPEN.VELSCALENUM
#scpiCmd AXIS1.CANOPEN.VELSCALENUM txrx AXIS1.CANOPEN.VELSCALENUM (value)
#scpiCmd AXIS1.CMDSOURCE? txrx? AXIS1.CMDSOURCE
#scpiCmd AXIS1.CMDSOURCE txrx AXIS1.CMDSOURCE (value)
#scpiCmd AXIS1.CS.DEC? txrx? AXIS1.CS.DEC
#scpiCmd AXIS1.CS.DEC txrx AXIS1.CS.DEC (value)
#scpiCmd AXIS1.DBILIMIT? txrx? AXIS1.DBILIMIT
#scpiCmd AXIS1.DBILIMIT txrx AXIS1.DBILIMIT (value)
#scpiCmd AXIS1.DIR? txrx? AXIS1.DIR
#scpiCmd AXIS1.DIR txrx AXIS1.DIR (value)
#scpiCmd AXIS1.DISMODE? txrx? AXIS1.DISMODE
#scpiCmd AXIS1.DISMODE txrx AXIS1.DISMODE (value)
#scpiCmd AXIS1.DISTO? txrx? AXIS1.DISTO
#scpiCmd AXIS1.DISTO txrx AXIS1.DISTO (value)
#scpiCmd AXIS1.ENDEFAULT? txrx? AXIS1.ENDEFAULT
#scpiCmd AXIS1.ENDEFAULT txrx AXIS1.ENDEFAULT (value)
#scpiCmd AXIS1.FAULT6004.ACTION? txrx? AXIS1.FAULT6004.ACTION
#scpiCmd AXIS1.FAULT6004.ACTION txrx AXIS1.FAULT6004.ACTION (value)
#scpiCmd AXIS1.FBUS.ACC? txrx? AXIS1.FBUS.ACC
#scpiCmd AXIS1.FBUS.ACC txrx AXIS1.FBUS.ACC (value)
#scpiCmd AXIS1.FBUS.CNTL? txrx? AXIS1.FBUS.CNTL
#scpiCmd AXIS1.FBUS.CNTL txrx AXIS1.FBUS.CNTL (value)
#scpiCmd AXIS1.FBUS.DEC? txrx? AXIS1.FBUS.DEC
#scpiCmd AXIS1.FBUS.DEC txrx AXIS1.FBUS.DEC (value)
#scpiCmd AXIS1.FBUS.IL.CMD? txrx? AXIS1.FBUS.IL.CMD
#scpiCmd AXIS1.FBUS.IL.CMD txrx AXIS1.FBUS.IL.CMD (value)
#scpiCmd AXIS1.FBUS.IL.LIMIT? txrx? AXIS1.FBUS.IL.LIMIT
#scpiCmd AXIS1.FBUS.IL.LIMIT txrx AXIS1.FBUS.IL.LIMIT (value)
#scpiCmd AXIS1.FBUS.P? txrx? AXIS1.FBUS.P
#scpiCmd AXIS1.FBUS.P txrx AXIS1.FBUS.P (value)
#scpiCmd AXIS1.FBUS.PL.CMD? txrx? AXIS1.FBUS.PL.CMD
#scpiCmd AXIS1.FBUS.PL.CMD txrx AXIS1.FBUS.PL.CMD (value)
#scpiCmd AXIS1.FBUS.PROTECTION? txrx? AXIS1.FBUS.PROTECTION
#scpiCmd AXIS1.FBUS.PROTECTION txrx AXIS1.FBUS.PROTECTION (value)
#scpiCmd AXIS1.FBUS.V? txrx? AXIS1.FBUS.V
#scpiCmd AXIS1.FBUS.V txrx AXIS1.FBUS.V (value)
#scpiCmd AXIS1.FBUS.VL.CMD? txrx? AXIS1.FBUS.VL.CMD
#scpiCmd AXIS1.FBUS.VL.CMD txrx AXIS1.FBUS.VL.CMD (value)
#scpiCmd AXIS1.GEAR.ACC? txrx? AXIS1.GEAR.ACC
#scpiCmd AXIS1.GEAR.ACC txrx AXIS1.GEAR.ACC (value)
#scpiCmd AXIS1.GEAR.DEC? txrx? AXIS1.GEAR.DEC
#scpiCmd AXIS1.GEAR.DEC txrx AXIS1.GEAR.DEC (value)
#scpiCmd AXIS1.GEAR.FBSOURCE? txrx? AXIS1.GEAR.FBSOURCE
#scpiCmd AXIS1.GEAR.FBSOURCE txrx AXIS1.GEAR.FBSOURCE (value)
#scpiCmd AXIS1.GEAR.IN? txrx? AXIS1.GEAR.IN
#scpiCmd AXIS1.GEAR.IN txrx AXIS1.GEAR.IN (value)
#scpiCmd AXIS1.GEAR.OUT? txrx? AXIS1.GEAR.OUT
#scpiCmd AXIS1.GEAR.OUT txrx AXIS1.GEAR.OUT (value)
#scpiCmd AXIS1.GUI.PARAM01? txrx? AXIS1.GUI.PARAM01
#scpiCmd AXIS1.GUI.PARAM01 txrx AXIS1.GUI.PARAM01 (value)
#scpiCmd AXIS1.GUI.PARAM02? txrx? AXIS1.GUI.PARAM02
#scpiCmd AXIS1.GUI.PARAM02 txrx AXIS1.GUI.PARAM02 (value)
#scpiCmd AXIS1.GUI.PARAM03? txrx? AXIS1.GUI.PARAM03
#scpiCmd AXIS1.GUI.PARAM03 txrx AXIS1.GUI.PARAM03 (value)
#scpiCmd AXIS1.GUI.PARAM04? txrx? AXIS1.GUI.PARAM04
#scpiCmd AXIS1.GUI.PARAM04 txrx AXIS1.GUI.PARAM04 (value)
#scpiCmd AXIS1.GUI.PARAM05? txrx? AXIS1.GUI.PARAM05
#scpiCmd AXIS1.GUI.PARAM05 txrx AXIS1.GUI.PARAM05 (value)
#scpiCmd AXIS1.GUI.PARAM06? txrx? AXIS1.GUI.PARAM06
#scpiCmd AXIS1.GUI.PARAM06 txrx AXIS1.GUI.PARAM06 (value)
#scpiCmd AXIS1.GUI.PARAM07? txrx? AXIS1.GUI.PARAM07
#scpiCmd AXIS1.GUI.PARAM07 txrx AXIS1.GUI.PARAM07 (value)
#scpiCmd AXIS1.GUI.PARAM08? txrx? AXIS1.GUI.PARAM08
#scpiCmd AXIS1.GUI.PARAM08 txrx AXIS1.GUI.PARAM08 (value)
#scpiCmd AXIS1.GUI.PARAM09? txrx? AXIS1.GUI.PARAM09
#scpiCmd AXIS1.GUI.PARAM09 txrx AXIS1.GUI.PARAM09 (value)
#scpiCmd AXIS1.GUI.PARAM10? txrx? AXIS1.GUI.PARAM10
#scpiCmd AXIS1.GUI.PARAM10 txrx AXIS1.GUI.PARAM10 (value)
#scpiCmd AXIS1.HOME.ACC? txrx? AXIS1.HOME.ACC
#scpiCmd AXIS1.HOME.ACC txrx AXIS1.HOME.ACC (value)
#scpiCmd AXIS1.HOME.AUTOMOVE? txrx? AXIS1.HOME.AUTOMOVE
#scpiCmd AXIS1.HOME.AUTOMOVE txrx AXIS1.HOME.AUTOMOVE (value)
#scpiCmd AXIS1.HOME.CREEPFACTOR? txrx? AXIS1.HOME.CREEPFACTOR
#scpiCmd AXIS1.HOME.CREEPFACTOR txrx AXIS1.HOME.CREEPFACTOR (value)
#scpiCmd AXIS1.HOME.DEC? txrx? AXIS1.HOME.DEC
#scpiCmd AXIS1.HOME.DEC txrx AXIS1.HOME.DEC (value)
#scpiCmd AXIS1.HOME.DIR? txrx? AXIS1.HOME.DIR
#scpiCmd AXIS1.HOME.DIR txrx AXIS1.HOME.DIR (value)
#scpiCmd AXIS1.HOME.DIST? txrx? AXIS1.HOME.DIST
#scpiCmd AXIS1.HOME.DIST txrx AXIS1.HOME.DIST (value)
#scpiCmd AXIS1.HOME.IPEAK? txrx? AXIS1.HOME.IPEAK
#scpiCmd AXIS1.HOME.IPEAK txrx AXIS1.HOME.IPEAK (value)
#scpiCmd AXIS1.HOME.MAXDIST? txrx? AXIS1.HOME.MAXDIST
#scpiCmd AXIS1.HOME.MAXDIST txrx AXIS1.HOME.MAXDIST (value)
#scpiCmd AXIS1.HOME.MODE? txrx? AXIS1.HOME.MODE
#scpiCmd AXIS1.HOME.MODE txrx AXIS1.HOME.MODE (value)
#scpiCmd AXIS1.HOME.MULTITURNMODE? txrx? AXIS1.HOME.MULTITURNMODE
#scpiCmd AXIS1.HOME.MULTITURNMODE txrx AXIS1.HOME.MULTITURNMODE (value)
#scpiCmd AXIS1.HOME.OFFSETUSER? txrx? AXIS1.HOME.OFFSETUSER
#scpiCmd AXIS1.HOME.OFFSETUSER txrx AXIS1.HOME.OFFSETUSER (value)
#scpiCmd AXIS1.HOME.P? txrx? AXIS1.HOME.P
#scpiCmd AXIS1.HOME.P txrx AXIS1.HOME.P (value)
#scpiCmd AXIS1.HOME.PERRTHRESH? txrx? AXIS1.HOME.PERRTHRESH
#scpiCmd AXIS1.HOME.PERRTHRESH txrx AXIS1.HOME.PERRTHRESH (value)
#scpiCmd AXIS1.HOME.SWITCHSOURCE? txrx? AXIS1.HOME.SWITCHSOURCE
#scpiCmd AXIS1.HOME.SWITCHSOURCE txrx AXIS1.HOME.SWITCHSOURCE (value)
#scpiCmd AXIS1.HOME.V? txrx? AXIS1.HOME.V
#scpiCmd AXIS1.HOME.V txrx AXIS1.HOME.V (value)
#scpiCmd AXIS1.HWEN.MODE? txrx? AXIS1.HWEN.MODE
#scpiCmd AXIS1.HWEN.MODE txrx AXIS1.HWEN.MODE (value)
#scpiCmd AXIS1.HWEN.SOURCE? txrx? AXIS1.HWEN.SOURCE
#scpiCmd AXIS1.HWEN.SOURCE txrx AXIS1.HWEN.SOURCE (value)
#scpiCmd AXIS1.HWLS.NEGSOURCE? txrx? AXIS1.HWLS.NEGSOURCE
#scpiCmd AXIS1.HWLS.NEGSOURCE txrx AXIS1.HWLS.NEGSOURCE (value)
#scpiCmd AXIS1.HWLS.POSSOURCE? txrx? AXIS1.HWLS.POSSOURCE
#scpiCmd AXIS1.HWLS.POSSOURCE txrx AXIS1.HWLS.POSSOURCE (value)
#scpiCmd AXIS1.IL.AINSCALE? txrx? AXIS1.IL.AINSCALE
#scpiCmd AXIS1.IL.AINSCALE txrx AXIS1.IL.AINSCALE (value)
#scpiCmd AXIS1.IL.AINSOURCE? txrx? AXIS1.IL.AINSOURCE
#scpiCmd AXIS1.IL.AINSOURCE txrx AXIS1.IL.AINSOURCE (value)
#scpiCmd AXIS1.IL.BW? txrx? AXIS1.IL.BW
#scpiCmd AXIS1.IL.BW txrx AXIS1.IL.BW (value)
#scpiCmd AXIS1.IL.CMDU? txrx? AXIS1.IL.CMDU
#scpiCmd AXIS1.IL.CMDU txrx AXIS1.IL.CMDU (value)
#scpiCmd AXIS1.IL.DCMDU? txrx? AXIS1.IL.DCMDU
#scpiCmd AXIS1.IL.DCMDU txrx AXIS1.IL.DCMDU (value)
#scpiCmd AXIS1.IL.DEADBAND? txrx? AXIS1.IL.DEADBAND
#scpiCmd AXIS1.IL.DEADBAND txrx AXIS1.IL.DEADBAND (value)
#scpiCmd AXIS1.IL.DISABLEFBOFFSET? txrx? AXIS1.IL.DISABLEFBOFFSET
#scpiCmd AXIS1.IL.DISABLEFBOFFSET txrx AXIS1.IL.DISABLEFBOFFSET (value)
#scpiCmd AXIS1.IL.DLIMITN? txrx? AXIS1.IL.DLIMITN
#scpiCmd AXIS1.IL.DLIMITN txrx AXIS1.IL.DLIMITN (value)
#scpiCmd AXIS1.IL.DLIMITP? txrx? AXIS1.IL.DLIMITP
#scpiCmd AXIS1.IL.DLIMITP txrx AXIS1.IL.DLIMITP (value)
#scpiCmd AXIS1.IL.FBSOURCE? txrx? AXIS1.IL.FBSOURCE
#scpiCmd AXIS1.IL.FBSOURCE txrx AXIS1.IL.FBSOURCE (value)
#scpiCmd AXIS1.IL.FOLDFTHRESHU? txrx? AXIS1.IL.FOLDFTHRESHU
#scpiCmd AXIS1.IL.FOLDFTHRESHU txrx AXIS1.IL.FOLDFTHRESHU (value)
#scpiCmd AXIS1.IL.FOLDWTHRESH? txrx? AXIS1.IL.FOLDWTHRESH
#scpiCmd AXIS1.IL.FOLDWTHRESH txrx AXIS1.IL.FOLDWTHRESH (value)
#scpiCmd AXIS1.IL.FRICTION? txrx? AXIS1.IL.FRICTION
#scpiCmd AXIS1.IL.FRICTION txrx AXIS1.IL.FRICTION (value)
#scpiCmd AXIS1.IL.INTEN? txrx? AXIS1.IL.INTEN
#scpiCmd AXIS1.IL.INTEN txrx AXIS1.IL.INTEN (value)
#scpiCmd AXIS1.IL.IUOFFSET? txrx? AXIS1.IL.IUOFFSET
#scpiCmd AXIS1.IL.IUOFFSET txrx AXIS1.IL.IUOFFSET (value)
#scpiCmd AXIS1.IL.IVOFFSET? txrx? AXIS1.IL.IVOFFSET
#scpiCmd AXIS1.IL.IVOFFSET txrx AXIS1.IL.IVOFFSET (value)
#scpiCmd AXIS1.IL.KACCFF? txrx? AXIS1.IL.KACCFF
#scpiCmd AXIS1.IL.KACCFF txrx AXIS1.IL.KACCFF (value)
#scpiCmd AXIS1.IL.KVFF? txrx? AXIS1.IL.KVFF
#scpiCmd AXIS1.IL.KVFF txrx AXIS1.IL.KVFF (value)
#scpiCmd AXIS1.IL.LIMITN? txrx? AXIS1.IL.LIMITN
#scpiCmd AXIS1.IL.LIMITN txrx AXIS1.IL.LIMITN (value)
#scpiCmd AXIS1.IL.LIMITP? txrx? AXIS1.IL.LIMITP
#scpiCmd AXIS1.IL.LIMITP txrx AXIS1.IL.LIMITP (value)
#scpiCmd AXIS1.IL.OFFSET? txrx? AXIS1.IL.OFFSET
#scpiCmd AXIS1.IL.OFFSET txrx AXIS1.IL.OFFSET (value)
#scpiCmd AXIS1.IL.PWMFREQHIGH? txrx? AXIS1.IL.PWMFREQHIGH
#scpiCmd AXIS1.IL.PWMFREQHIGH txrx AXIS1.IL.PWMFREQHIGH (value)
#scpiCmd AXIS1.IL.PWMFREQNOMINAL? txrx? AXIS1.IL.PWMFREQNOMINAL
#scpiCmd AXIS1.IL.PWMFREQNOMINAL txrx AXIS1.IL.PWMFREQNOMINAL (value)
#scpiCmd AXIS1.IL.PWMQUIET? txrx? AXIS1.IL.PWMQUIET
#scpiCmd AXIS1.IL.PWMQUIET txrx AXIS1.IL.PWMQUIET (value)
#scpiCmd AXIS1.IL.RATELIMITU? txrx? AXIS1.IL.RATELIMITU
#scpiCmd AXIS1.IL.RATELIMITU txrx AXIS1.IL.RATELIMITU (value)
#scpiCmd AXIS1.IL.VOLTBW? txrx? AXIS1.IL.VOLTBW
#scpiCmd AXIS1.IL.VOLTBW txrx AXIS1.IL.VOLTBW (value)
#scpiCmd AXIS1.IL.VOLTEN? txrx? AXIS1.IL.VOLTEN
#scpiCmd AXIS1.IL.VOLTEN txrx AXIS1.IL.VOLTEN (value)
#scpiCmd AXIS1.IL.VOLTGAIN? txrx? AXIS1.IL.VOLTGAIN
#scpiCmd AXIS1.IL.VOLTGAIN txrx AXIS1.IL.VOLTGAIN (value)
#scpiCmd AXIS1.IL2.IUOFFSET? txrx? AXIS1.IL2.IUOFFSET
#scpiCmd AXIS1.IL2.IUOFFSET txrx AXIS1.IL2.IUOFFSET (value)
#scpiCmd AXIS1.IL2.IVOFFSET? txrx? AXIS1.IL2.IVOFFSET
#scpiCmd AXIS1.IL2.IVOFFSET txrx AXIS1.IL2.IVOFFSET (value)
#scpiCmd AXIS1.JOG.ACC? txrx? AXIS1.JOG.ACC
#scpiCmd AXIS1.JOG.ACC txrx AXIS1.JOG.ACC (value)
#scpiCmd AXIS1.JOG.DEC? txrx? AXIS1.JOG.DEC
#scpiCmd AXIS1.JOG.DEC txrx AXIS1.JOG.DEC (value)
#scpiCmd AXIS1.JOG.V? txrx? AXIS1.JOG.V
#scpiCmd AXIS1.JOG.V txrx AXIS1.JOG.V (value)
#scpiCmd AXIS1.LOAD.INERTIA? txrx? AXIS1.LOAD.INERTIA
#scpiCmd AXIS1.LOAD.INERTIA txrx AXIS1.LOAD.INERTIA (value)
#scpiCmd AXIS1.MOTIONCONTROL? txrx? AXIS1.MOTIONCONTROL
#scpiCmd AXIS1.MOTIONCONTROL txrx AXIS1.MOTIONCONTROL (value)
#scpiCmd AXIS1.MOTOR.AUTOSET? txrx? AXIS1.MOTOR.AUTOSET
#scpiCmd AXIS1.MOTOR.AUTOSET txrx AXIS1.MOTOR.AUTOSET (value)
#scpiCmd AXIS1.MOTOR.BRAKE? txrx? AXIS1.MOTOR.BRAKE
#scpiCmd AXIS1.MOTOR.BRAKE txrx AXIS1.MOTOR.BRAKE (value)
#scpiCmd AXIS1.MOTOR.BRAKECONTROL? txrx? AXIS1.MOTOR.BRAKECONTROL
#scpiCmd AXIS1.MOTOR.BRAKECONTROL txrx AXIS1.MOTOR.BRAKECONTROL (value)
#scpiCmd AXIS1.MOTOR.BRAKEIMM? txrx? AXIS1.MOTOR.BRAKEIMM
#scpiCmd AXIS1.MOTOR.BRAKEIMM txrx AXIS1.MOTOR.BRAKEIMM (value)
#scpiCmd AXIS1.MOTOR.BRAKEPOWERDELAY? txrx? AXIS1.MOTOR.BRAKEPOWERDELAY
#scpiCmd AXIS1.MOTOR.BRAKEPOWERDELAY txrx AXIS1.MOTOR.BRAKEPOWERDELAY (value)
#scpiCmd AXIS1.MOTOR.BRAKEPOWERLOW? txrx? AXIS1.MOTOR.BRAKEPOWERLOW
#scpiCmd AXIS1.MOTOR.BRAKEPOWERLOW txrx AXIS1.MOTOR.BRAKEPOWERLOW (value)
#scpiCmd AXIS1.MOTOR.BRAKEPOWERSAVING? txrx? AXIS1.MOTOR.BRAKEPOWERSAVING
#scpiCmd AXIS1.MOTOR.BRAKEPOWERSAVING txrx AXIS1.MOTOR.BRAKEPOWERSAVING (value)
#scpiCmd AXIS1.MOTOR.CTF0? txrx? AXIS1.MOTOR.CTF0
#scpiCmd AXIS1.MOTOR.CTF0 txrx AXIS1.MOTOR.CTF0 (value)
#scpiCmd AXIS1.MOTOR.FIELDWEAKENING? txrx? AXIS1.MOTOR.FIELDWEAKENING
#scpiCmd AXIS1.MOTOR.FIELDWEAKENING txrx AXIS1.MOTOR.FIELDWEAKENING (value)
#scpiCmd AXIS1.MOTOR.FLUXFILTERK? txrx? AXIS1.MOTOR.FLUXFILTERK
#scpiCmd AXIS1.MOTOR.FLUXFILTERK txrx AXIS1.MOTOR.FLUXFILTERK (value)
#scpiCmd AXIS1.MOTOR.ICONT? txrx? AXIS1.MOTOR.ICONT
#scpiCmd AXIS1.MOTOR.ICONT txrx AXIS1.MOTOR.ICONT (value)
#scpiCmd AXIS1.MOTOR.IDMAX? txrx? AXIS1.MOTOR.IDMAX
#scpiCmd AXIS1.MOTOR.IDMAX txrx AXIS1.MOTOR.IDMAX (value)
#scpiCmd AXIS1.MOTOR.IMID? txrx? AXIS1.MOTOR.IMID
#scpiCmd AXIS1.MOTOR.IMID txrx AXIS1.MOTOR.IMID (value)
#scpiCmd AXIS1.MOTOR.IMTR? txrx? AXIS1.MOTOR.IMTR
#scpiCmd AXIS1.MOTOR.IMTR txrx AXIS1.MOTOR.IMTR (value)
#scpiCmd AXIS1.MOTOR.INERTIA? txrx? AXIS1.MOTOR.INERTIA
#scpiCmd AXIS1.MOTOR.INERTIA txrx AXIS1.MOTOR.INERTIA (value)
#scpiCmd AXIS1.MOTOR.IPEAK? txrx? AXIS1.MOTOR.IPEAK
#scpiCmd AXIS1.MOTOR.IPEAK txrx AXIS1.MOTOR.IPEAK (value)
#scpiCmd AXIS1.MOTOR.KE? txrx? AXIS1.MOTOR.KE
#scpiCmd AXIS1.MOTOR.KE txrx AXIS1.MOTOR.KE (value)
#scpiCmd AXIS1.MOTOR.KT? txrx? AXIS1.MOTOR.KT
#scpiCmd AXIS1.MOTOR.KT txrx AXIS1.MOTOR.KT (value)
#scpiCmd AXIS1.MOTOR.LDLL? txrx? AXIS1.MOTOR.LDLL
#scpiCmd AXIS1.MOTOR.LDLL txrx AXIS1.MOTOR.LDLL (value)
#scpiCmd AXIS1.MOTOR.LISAT? txrx? AXIS1.MOTOR.LISAT
#scpiCmd AXIS1.MOTOR.LISAT txrx AXIS1.MOTOR.LISAT (value)
#scpiCmd AXIS1.MOTOR.LQLL? txrx? AXIS1.MOTOR.LQLL
#scpiCmd AXIS1.MOTOR.LQLL txrx AXIS1.MOTOR.LQLL (value)
#scpiCmd AXIS1.MOTOR.NAME? txrx? AXIS1.MOTOR.NAME
#scpiCmd AXIS1.MOTOR.NAME txrx AXIS1.MOTOR.NAME (value)
#scpiCmd AXIS1.MOTOR.PHASE? txrx? AXIS1.MOTOR.PHASE
#scpiCmd AXIS1.MOTOR.PHASE txrx AXIS1.MOTOR.PHASE (value)
#scpiCmd AXIS1.MOTOR.PHSADVK1? txrx? AXIS1.MOTOR.PHSADVK1
#scpiCmd AXIS1.MOTOR.PHSADVK1 txrx AXIS1.MOTOR.PHSADVK1 (value)
#scpiCmd AXIS1.MOTOR.PHSADVK2? txrx? AXIS1.MOTOR.PHSADVK2
#scpiCmd AXIS1.MOTOR.PHSADVK2 txrx AXIS1.MOTOR.PHSADVK2 (value)
#scpiCmd AXIS1.MOTOR.PITCH? txrx? AXIS1.MOTOR.PITCH
#scpiCmd AXIS1.MOTOR.PITCH txrx AXIS1.MOTOR.PITCH (value)
#scpiCmd AXIS1.MOTOR.POLES? txrx? AXIS1.MOTOR.POLES
#scpiCmd AXIS1.MOTOR.POLES txrx AXIS1.MOTOR.POLES (value)
#scpiCmd AXIS1.MOTOR.R? txrx? AXIS1.MOTOR.R
#scpiCmd AXIS1.MOTOR.R txrx AXIS1.MOTOR.R (value)
#scpiCmd AXIS1.MOTOR.RSOURCE? txrx? AXIS1.MOTOR.RSOURCE
#scpiCmd AXIS1.MOTOR.RSOURCE txrx AXIS1.MOTOR.RSOURCE (value)
#scpiCmd AXIS1.MOTOR.RTYPE? txrx? AXIS1.MOTOR.RTYPE
#scpiCmd AXIS1.MOTOR.RTYPE txrx AXIS1.MOTOR.RTYPE (value)
#scpiCmd AXIS1.MOTOR.TBRAKEAPP? txrx? AXIS1.MOTOR.TBRAKEAPP
#scpiCmd AXIS1.MOTOR.TBRAKEAPP txrx AXIS1.MOTOR.TBRAKEAPP (value)
#scpiCmd AXIS1.MOTOR.TBRAKERLS? txrx? AXIS1.MOTOR.TBRAKERLS
#scpiCmd AXIS1.MOTOR.TBRAKERLS txrx AXIS1.MOTOR.TBRAKERLS (value)
#scpiCmd AXIS1.MOTOR.TBRAKETO? txrx? AXIS1.MOTOR.TBRAKETO
#scpiCmd AXIS1.MOTOR.TBRAKETO txrx AXIS1.MOTOR.TBRAKETO (value)
#scpiCmd AXIS1.MOTOR.TEMPFAULT? txrx? AXIS1.MOTOR.TEMPFAULT
#scpiCmd AXIS1.MOTOR.TEMPFAULT txrx AXIS1.MOTOR.TEMPFAULT (value)
#scpiCmd AXIS1.MOTOR.TEMPWARN? txrx? AXIS1.MOTOR.TEMPWARN
#scpiCmd AXIS1.MOTOR.TEMPWARN txrx AXIS1.MOTOR.TEMPWARN (value)
#scpiCmd AXIS1.MOTOR.TYPE? txrx? AXIS1.MOTOR.TYPE
#scpiCmd AXIS1.MOTOR.TYPE txrx AXIS1.MOTOR.TYPE (value)
#scpiCmd AXIS1.MOTOR.VMAX? txrx? AXIS1.MOTOR.VMAX
#scpiCmd AXIS1.MOTOR.VMAX txrx AXIS1.MOTOR.VMAX (value)
#scpiCmd AXIS1.MOTOR.VOLTMAX? txrx? AXIS1.MOTOR.VOLTMAX
#scpiCmd AXIS1.MOTOR.VOLTMAX txrx AXIS1.MOTOR.VOLTMAX (value)
#scpiCmd AXIS1.MOTOR.VOLTMIN? txrx? AXIS1.MOTOR.VOLTMIN
#scpiCmd AXIS1.MOTOR.VOLTMIN txrx AXIS1.MOTOR.VOLTMIN (value)
#scpiCmd AXIS1.MOTOR.VOLTRATED? txrx? AXIS1.MOTOR.VOLTRATED
#scpiCmd AXIS1.MOTOR.VOLTRATED txrx AXIS1.MOTOR.VOLTRATED (value)
#scpiCmd AXIS1.MOTOR.VRATED? txrx? AXIS1.MOTOR.VRATED
#scpiCmd AXIS1.MOTOR.VRATED txrx AXIS1.MOTOR.VRATED (value)
#scpiCmd AXIS1.MOTOR.VUTIL? txrx? AXIS1.MOTOR.VUTIL
#scpiCmd AXIS1.MOTOR.VUTIL txrx AXIS1.MOTOR.VUTIL (value)
#scpiCmd AXIS1.MT.ACC? txrx? AXIS1.MT.ACC
#scpiCmd AXIS1.MT.ACC txrx AXIS1.MT.ACC (value)
#scpiCmd AXIS1.MT.CAP? txrx? AXIS1.MT.CAP
#scpiCmd AXIS1.MT.CAP txrx AXIS1.MT.CAP (value)
#scpiCmd AXIS1.MT.CLEAR? txrx? AXIS1.MT.CLEAR
#scpiCmd AXIS1.MT.CLEAR txrx AXIS1.MT.CLEAR (value)
#scpiCmd AXIS1.MT.CNTL? txrx? AXIS1.MT.CNTL
#scpiCmd AXIS1.MT.CNTL txrx AXIS1.MT.CNTL (value)
#scpiCmd AXIS1.MT.DEC? txrx? AXIS1.MT.DEC
#scpiCmd AXIS1.MT.DEC txrx AXIS1.MT.DEC (value)
#scpiCmd AXIS1.MT.DISALLOWINTERRUPT? txrx? AXIS1.MT.DISALLOWINTERRUPT
#scpiCmd AXIS1.MT.DISALLOWINTERRUPT txrx AXIS1.MT.DISALLOWINTERRUPT (value)
#scpiCmd AXIS1.MT.DISALLOWZEROSTARTVEL? txrx? AXIS1.MT.DISALLOWZEROSTARTVEL
#scpiCmd AXIS1.MT.DISALLOWZEROSTARTVEL txrx AXIS1.MT.DISALLOWZEROSTARTVEL (value)
#scpiCmd AXIS1.MT.FEEDRATE? txrx? AXIS1.MT.FEEDRATE
#scpiCmd AXIS1.MT.FEEDRATE txrx AXIS1.MT.FEEDRATE (value)
#scpiCmd AXIS1.MT.MOVE? txrx? AXIS1.MT.MOVE
#scpiCmd AXIS1.MT.MOVE txrx AXIS1.MT.MOVE (value)
#scpiCmd AXIS1.MT.MTNEXT? txrx? AXIS1.MT.MTNEXT
#scpiCmd AXIS1.MT.MTNEXT txrx AXIS1.MT.MTNEXT (value)
#scpiCmd AXIS1.MT.P? txrx? AXIS1.MT.P
#scpiCmd AXIS1.MT.P txrx AXIS1.MT.P (value)
#scpiCmd AXIS1.MT.TNEXT? txrx? AXIS1.MT.TNEXT
#scpiCmd AXIS1.MT.TNEXT txrx AXIS1.MT.TNEXT (value)
#scpiCmd AXIS1.MT.TRANSITION? txrx? AXIS1.MT.TRANSITION
#scpiCmd AXIS1.MT.TRANSITION txrx AXIS1.MT.TRANSITION (value)
#scpiCmd AXIS1.MT.TYPE? txrx? AXIS1.MT.TYPE
#scpiCmd AXIS1.MT.TYPE txrx AXIS1.MT.TYPE (value)
#scpiCmd AXIS1.MT.V? txrx? AXIS1.MT.V
#scpiCmd AXIS1.MT.V txrx AXIS1.MT.V (value)
#scpiCmd AXIS1.NAME? txrx? AXIS1.NAME
#scpiCmd AXIS1.NAME txrx AXIS1.NAME (value)
#scpiCmd AXIS1.OBS.BW? txrx? AXIS1.OBS.BW
#scpiCmd AXIS1.OBS.BW txrx AXIS1.OBS.BW (value)
#scpiCmd AXIS1.OBS.ENABLE? txrx? AXIS1.OBS.ENABLE
#scpiCmd AXIS1.OBS.ENABLE txrx AXIS1.OBS.ENABLE (value)
#scpiCmd AXIS1.OBS.KO? txrx? AXIS1.OBS.KO
#scpiCmd AXIS1.OBS.KO txrx AXIS1.OBS.KO (value)
#scpiCmd AXIS1.OPMODE? txrx? AXIS1.OPMODE
#scpiCmd AXIS1.OPMODE txrx AXIS1.OPMODE (value)
#scpiCmd AXIS1.PL.AINSCALE? txrx? AXIS1.PL.AINSCALE
#scpiCmd AXIS1.PL.AINSCALE txrx AXIS1.PL.AINSCALE (value)
#scpiCmd AXIS1.PL.AINSOURCE? txrx? AXIS1.PL.AINSOURCE
#scpiCmd AXIS1.PL.AINSOURCE txrx AXIS1.PL.AINSOURCE (value)
#scpiCmd AXIS1.PL.ERRFTHRESH? txrx? AXIS1.PL.ERRFTHRESH
#scpiCmd AXIS1.PL.ERRFTHRESH txrx AXIS1.PL.ERRFTHRESH (value)
#scpiCmd AXIS1.PL.ERRWTHRESH? txrx? AXIS1.PL.ERRWTHRESH
#scpiCmd AXIS1.PL.ERRWTHRESH txrx AXIS1.PL.ERRWTHRESH (value)
#scpiCmd AXIS1.PL.FBSOURCE? txrx? AXIS1.PL.FBSOURCE
#scpiCmd AXIS1.PL.FBSOURCE txrx AXIS1.PL.FBSOURCE (value)
#scpiCmd AXIS1.PL.FILTERTIME? txrx? AXIS1.PL.FILTERTIME
#scpiCmd AXIS1.PL.FILTERTIME txrx AXIS1.PL.FILTERTIME (value)
#scpiCmd AXIS1.PL.INTOUTMAX? txrx? AXIS1.PL.INTOUTMAX
#scpiCmd AXIS1.PL.INTOUTMAX txrx AXIS1.PL.INTOUTMAX (value)
#scpiCmd AXIS1.PL.KFB? txrx? AXIS1.PL.KFB
#scpiCmd AXIS1.PL.KFB txrx AXIS1.PL.KFB (value)
#scpiCmd AXIS1.PL.KI? txrx? AXIS1.PL.KI
#scpiCmd AXIS1.PL.KI txrx AXIS1.PL.KI (value)
#scpiCmd AXIS1.PL.KITHRESH? txrx? AXIS1.PL.KITHRESH
#scpiCmd AXIS1.PL.KITHRESH txrx AXIS1.PL.KITHRESH (value)
#scpiCmd AXIS1.PL.KP? txrx? AXIS1.PL.KP
#scpiCmd AXIS1.PL.KP txrx AXIS1.PL.KP (value)
#scpiCmd AXIS1.PL.MODP1? txrx? AXIS1.PL.MODP1
#scpiCmd AXIS1.PL.MODP1 txrx AXIS1.PL.MODP1 (value)
#scpiCmd AXIS1.PL.MODP2? txrx? AXIS1.PL.MODP2
#scpiCmd AXIS1.PL.MODP2 txrx AXIS1.PL.MODP2 (value)
#scpiCmd AXIS1.PL.MODPDIR? txrx? AXIS1.PL.MODPDIR
#scpiCmd AXIS1.PL.MODPDIR txrx AXIS1.PL.MODPDIR (value)
#scpiCmd AXIS1.PL.MODPEN? txrx? AXIS1.PL.MODPEN
#scpiCmd AXIS1.PL.MODPEN txrx AXIS1.PL.MODPEN (value)
#scpiCmd AXIS1.PL.OFFSET? txrx? AXIS1.PL.OFFSET
#scpiCmd AXIS1.PL.OFFSET txrx AXIS1.PL.OFFSET (value)
#scpiCmd AXIS1.SAFE.STO.REPORTFAULT? txrx? AXIS1.SAFE.STO.REPORTFAULT
#scpiCmd AXIS1.SAFE.STO.REPORTFAULT txrx AXIS1.SAFE.STO.REPORTFAULT (value)
#scpiCmd AXIS1.SETTLE.P? txrx? AXIS1.SETTLE.P
#scpiCmd AXIS1.SETTLE.P txrx AXIS1.SETTLE.P (value)
#scpiCmd AXIS1.SETTLE.V? txrx? AXIS1.SETTLE.V
#scpiCmd AXIS1.SETTLE.V txrx AXIS1.SETTLE.V (value)
#scpiCmd AXIS1.SIM.KDVFREQ? txrx? AXIS1.SIM.KDVFREQ
#scpiCmd AXIS1.SIM.KDVFREQ txrx AXIS1.SIM.KDVFREQ (value)
#scpiCmd AXIS1.SIM.RUNDISABLED? txrx? AXIS1.SIM.RUNDISABLED
#scpiCmd AXIS1.SIM.RUNDISABLED txrx AXIS1.SIM.RUNDISABLED (value)
#scpiCmd AXIS1.SM.ACC? txrx? AXIS1.SM.ACC
#scpiCmd AXIS1.SM.ACC txrx AXIS1.SM.ACC (value)
#scpiCmd AXIS1.SM.DEC? txrx? AXIS1.SM.DEC
#scpiCmd AXIS1.SM.DEC txrx AXIS1.SM.DEC (value)
#scpiCmd AXIS1.SM.I1? txrx? AXIS1.SM.I1
#scpiCmd AXIS1.SM.I1 txrx AXIS1.SM.I1 (value)
#scpiCmd AXIS1.SM.I2? txrx? AXIS1.SM.I2
#scpiCmd AXIS1.SM.I2 txrx AXIS1.SM.I2 (value)
#scpiCmd AXIS1.SM.MODE? txrx? AXIS1.SM.MODE
#scpiCmd AXIS1.SM.MODE txrx AXIS1.SM.MODE (value)
#scpiCmd AXIS1.SM.T1? txrx? AXIS1.SM.T1
#scpiCmd AXIS1.SM.T1 txrx AXIS1.SM.T1 (value)
#scpiCmd AXIS1.SM.T2? txrx? AXIS1.SM.T2
#scpiCmd AXIS1.SM.T2 txrx AXIS1.SM.T2 (value)
#scpiCmd AXIS1.SM.V1? txrx? AXIS1.SM.V1
#scpiCmd AXIS1.SM.V1 txrx AXIS1.SM.V1 (value)
#scpiCmd AXIS1.SM.V2? txrx? AXIS1.SM.V2
#scpiCmd AXIS1.SM.V2 txrx AXIS1.SM.V2 (value)
#scpiCmd AXIS1.SWLS.EN? txrx? AXIS1.SWLS.EN
#scpiCmd AXIS1.SWLS.EN txrx AXIS1.SWLS.EN (value)
#scpiCmd AXIS1.SWLS.LIMIT0? txrx? AXIS1.SWLS.LIMIT0
#scpiCmd AXIS1.SWLS.LIMIT0 txrx AXIS1.SWLS.LIMIT0 (value)
#scpiCmd AXIS1.SWLS.LIMIT1? txrx? AXIS1.SWLS.LIMIT1
#scpiCmd AXIS1.SWLS.LIMIT1 txrx AXIS1.SWLS.LIMIT1 (value)
#scpiCmd AXIS1.UNIT.ACCLINEAR? txrx? AXIS1.UNIT.ACCLINEAR
#scpiCmd AXIS1.UNIT.ACCLINEAR txrx AXIS1.UNIT.ACCLINEAR (value)
#scpiCmd AXIS1.UNIT.ACCROTARY? txrx? AXIS1.UNIT.ACCROTARY
#scpiCmd AXIS1.UNIT.ACCROTARY txrx AXIS1.UNIT.ACCROTARY (value)
#scpiCmd AXIS1.UNIT.LABEL? txrx? AXIS1.UNIT.LABEL
#scpiCmd AXIS1.UNIT.LABEL txrx AXIS1.UNIT.LABEL (value)
#scpiCmd AXIS1.UNIT.PIN? txrx? AXIS1.UNIT.PIN
#scpiCmd AXIS1.UNIT.PIN txrx AXIS1.UNIT.PIN (value)
#scpiCmd AXIS1.UNIT.PLINEAR? txrx? AXIS1.UNIT.PLINEAR
#scpiCmd AXIS1.UNIT.PLINEAR txrx AXIS1.UNIT.PLINEAR (value)
#scpiCmd AXIS1.UNIT.POUT? txrx? AXIS1.UNIT.POUT
#scpiCmd AXIS1.UNIT.POUT txrx AXIS1.UNIT.POUT (value)
#scpiCmd AXIS1.UNIT.PROTARY? txrx? AXIS1.UNIT.PROTARY
#scpiCmd AXIS1.UNIT.PROTARY txrx AXIS1.UNIT.PROTARY (value)
#scpiCmd AXIS1.UNIT.VLINEAR? txrx? AXIS1.UNIT.VLINEAR
#scpiCmd AXIS1.UNIT.VLINEAR txrx AXIS1.UNIT.VLINEAR (value)
#scpiCmd AXIS1.UNIT.VROTARY? txrx? AXIS1.UNIT.VROTARY
#scpiCmd AXIS1.UNIT.VROTARY txrx AXIS1.UNIT.VROTARY (value)
#scpiCmd AXIS1.VL.AINACC? txrx? AXIS1.VL.AINACC
#scpiCmd AXIS1.VL.AINACC txrx AXIS1.VL.AINACC (value)
#scpiCmd AXIS1.VL.AINDEC? txrx? AXIS1.VL.AINDEC
#scpiCmd AXIS1.VL.AINDEC txrx AXIS1.VL.AINDEC (value)
#scpiCmd AXIS1.VL.AINSCALE? txrx? AXIS1.VL.AINSCALE
#scpiCmd AXIS1.VL.AINSCALE txrx AXIS1.VL.AINSCALE (value)
#scpiCmd AXIS1.VL.AINSOURCE? txrx? AXIS1.VL.AINSOURCE
#scpiCmd AXIS1.VL.AINSOURCE txrx AXIS1.VL.AINSOURCE (value)
#scpiCmd AXIS1.VL.ARPF1? txrx? AXIS1.VL.ARPF1
#scpiCmd AXIS1.VL.ARPF1 txrx AXIS1.VL.ARPF1 (value)
#scpiCmd AXIS1.VL.ARPF2? txrx? AXIS1.VL.ARPF2
#scpiCmd AXIS1.VL.ARPF2 txrx AXIS1.VL.ARPF2 (value)
#scpiCmd AXIS1.VL.ARPF3? txrx? AXIS1.VL.ARPF3
#scpiCmd AXIS1.VL.ARPF3 txrx AXIS1.VL.ARPF3 (value)
#scpiCmd AXIS1.VL.ARPF4? txrx? AXIS1.VL.ARPF4
#scpiCmd AXIS1.VL.ARPF4 txrx AXIS1.VL.ARPF4 (value)
#scpiCmd AXIS1.VL.ARPQ1? txrx? AXIS1.VL.ARPQ1
#scpiCmd AXIS1.VL.ARPQ1 txrx AXIS1.VL.ARPQ1 (value)
#scpiCmd AXIS1.VL.ARPQ2? txrx? AXIS1.VL.ARPQ2
#scpiCmd AXIS1.VL.ARPQ2 txrx AXIS1.VL.ARPQ2 (value)
#scpiCmd AXIS1.VL.ARPQ3? txrx? AXIS1.VL.ARPQ3
#scpiCmd AXIS1.VL.ARPQ3 txrx AXIS1.VL.ARPQ3 (value)
#scpiCmd AXIS1.VL.ARPQ4? txrx? AXIS1.VL.ARPQ4
#scpiCmd AXIS1.VL.ARPQ4 txrx AXIS1.VL.ARPQ4 (value)
#scpiCmd AXIS1.VL.ARTYPE1? txrx? AXIS1.VL.ARTYPE1
#scpiCmd AXIS1.VL.ARTYPE1 txrx AXIS1.VL.ARTYPE1 (value)
#scpiCmd AXIS1.VL.ARTYPE2? txrx? AXIS1.VL.ARTYPE2
#scpiCmd AXIS1.VL.ARTYPE2 txrx AXIS1.VL.ARTYPE2 (value)
#scpiCmd AXIS1.VL.ARTYPE3? txrx? AXIS1.VL.ARTYPE3
#scpiCmd AXIS1.VL.ARTYPE3 txrx AXIS1.VL.ARTYPE3 (value)
#scpiCmd AXIS1.VL.ARTYPE4? txrx? AXIS1.VL.ARTYPE4
#scpiCmd AXIS1.VL.ARTYPE4 txrx AXIS1.VL.ARTYPE4 (value)
#scpiCmd AXIS1.VL.ARZF1? txrx? AXIS1.VL.ARZF1
#scpiCmd AXIS1.VL.ARZF1 txrx AXIS1.VL.ARZF1 (value)
#scpiCmd AXIS1.VL.ARZF2? txrx? AXIS1.VL.ARZF2
#scpiCmd AXIS1.VL.ARZF2 txrx AXIS1.VL.ARZF2 (value)
#scpiCmd AXIS1.VL.ARZF3? txrx? AXIS1.VL.ARZF3
#scpiCmd AXIS1.VL.ARZF3 txrx AXIS1.VL.ARZF3 (value)
#scpiCmd AXIS1.VL.ARZF4? txrx? AXIS1.VL.ARZF4
#scpiCmd AXIS1.VL.ARZF4 txrx AXIS1.VL.ARZF4 (value)
#scpiCmd AXIS1.VL.ARZQ1? txrx? AXIS1.VL.ARZQ1
#scpiCmd AXIS1.VL.ARZQ1 txrx AXIS1.VL.ARZQ1 (value)
#scpiCmd AXIS1.VL.ARZQ2? txrx? AXIS1.VL.ARZQ2
#scpiCmd AXIS1.VL.ARZQ2 txrx AXIS1.VL.ARZQ2 (value)
#scpiCmd AXIS1.VL.ARZQ3? txrx? AXIS1.VL.ARZQ3
#scpiCmd AXIS1.VL.ARZQ3 txrx AXIS1.VL.ARZQ3 (value)
#scpiCmd AXIS1.VL.ARZQ4? txrx? AXIS1.VL.ARZQ4
#scpiCmd AXIS1.VL.ARZQ4 txrx AXIS1.VL.ARZQ4 (value)
#scpiCmd AXIS1.VL.BUSFF? txrx? AXIS1.VL.BUSFF
#scpiCmd AXIS1.VL.BUSFF txrx AXIS1.VL.BUSFF (value)
#scpiCmd AXIS1.VL.CMDU? txrx? AXIS1.VL.CMDU
#scpiCmd AXIS1.VL.CMDU txrx AXIS1.VL.CMDU (value)
#scpiCmd AXIS1.VL.FBSOURCE? txrx? AXIS1.VL.FBSOURCE
#scpiCmd AXIS1.VL.FBSOURCE txrx AXIS1.VL.FBSOURCE (value)
#scpiCmd AXIS1.VL.KFB? txrx? AXIS1.VL.KFB
#scpiCmd AXIS1.VL.KFB txrx AXIS1.VL.KFB (value)
#scpiCmd AXIS1.VL.KI? txrx? AXIS1.VL.KI
#scpiCmd AXIS1.VL.KI txrx AXIS1.VL.KI (value)
#scpiCmd AXIS1.VL.KIMODE? txrx? AXIS1.VL.KIMODE
#scpiCmd AXIS1.VL.KIMODE txrx AXIS1.VL.KIMODE (value)
#scpiCmd AXIS1.VL.KP? txrx? AXIS1.VL.KP
#scpiCmd AXIS1.VL.KP txrx AXIS1.VL.KP (value)
#scpiCmd AXIS1.VL.KVFF? txrx? AXIS1.VL.KVFF
#scpiCmd AXIS1.VL.KVFF txrx AXIS1.VL.KVFF (value)
#scpiCmd AXIS1.VL.LIMITN? txrx? AXIS1.VL.LIMITN
#scpiCmd AXIS1.VL.LIMITN txrx AXIS1.VL.LIMITN (value)
#scpiCmd AXIS1.VL.LIMITP? txrx? AXIS1.VL.LIMITP
#scpiCmd AXIS1.VL.LIMITP txrx AXIS1.VL.LIMITP (value)
#scpiCmd AXIS1.VL.LMJR? txrx? AXIS1.VL.LMJR
#scpiCmd AXIS1.VL.LMJR txrx AXIS1.VL.LMJR (value)
#scpiCmd AXIS1.VL.THRESH? txrx? AXIS1.VL.THRESH
#scpiCmd AXIS1.VL.THRESH txrx AXIS1.VL.THRESH (value)
#scpiCmd AXIS1.WS.CHECKMODE? txrx? AXIS1.WS.CHECKMODE
#scpiCmd AXIS1.WS.CHECKMODE txrx AXIS1.WS.CHECKMODE (value)
#scpiCmd AXIS1.WS.CHECKT? txrx? AXIS1.WS.CHECKT
#scpiCmd AXIS1.WS.CHECKT txrx AXIS1.WS.CHECKT (value)
#scpiCmd AXIS1.WS.CHECKV? txrx? AXIS1.WS.CHECKV
#scpiCmd AXIS1.WS.CHECKV txrx AXIS1.WS.CHECKV (value)
#scpiCmd AXIS1.WS.DISTMAX? txrx? AXIS1.WS.DISTMAX
#scpiCmd AXIS1.WS.DISTMAX txrx AXIS1.WS.DISTMAX (value)
#scpiCmd AXIS1.WS.DISTMIN? txrx? AXIS1.WS.DISTMIN
#scpiCmd AXIS1.WS.DISTMIN txrx AXIS1.WS.DISTMIN (value)
#scpiCmd AXIS1.WS.FREQ? txrx? AXIS1.WS.FREQ
#scpiCmd AXIS1.WS.FREQ txrx AXIS1.WS.FREQ (value)
#scpiCmd AXIS1.WS.IMAX? txrx? AXIS1.WS.IMAX
#scpiCmd AXIS1.WS.IMAX txrx AXIS1.WS.IMAX (value)
#scpiCmd AXIS1.WS.MODE? txrx? AXIS1.WS.MODE
#scpiCmd AXIS1.WS.MODE txrx AXIS1.WS.MODE (value)
#scpiCmd AXIS1.WS.NUMLOOPS? txrx? AXIS1.WS.NUMLOOPS
#scpiCmd AXIS1.WS.NUMLOOPS txrx AXIS1.WS.NUMLOOPS (value)
#scpiCmd AXIS1.WS.T? txrx? AXIS1.WS.T
#scpiCmd AXIS1.WS.T txrx AXIS1.WS.T (value)
#scpiCmd AXIS1.WS.TDELAY1? txrx? AXIS1.WS.TDELAY1
#scpiCmd AXIS1.WS.TDELAY1 txrx AXIS1.WS.TDELAY1 (value)
#scpiCmd AXIS1.WS.TDELAY2? txrx? AXIS1.WS.TDELAY2
#scpiCmd AXIS1.WS.TDELAY2 txrx AXIS1.WS.TDELAY2 (value)
#scpiCmd AXIS1.WS.TDELAY3? txrx? AXIS1.WS.TDELAY3
#scpiCmd AXIS1.WS.TDELAY3 txrx AXIS1.WS.TDELAY3 (value)
#scpiCmd AXIS1.WS.TDELAY4? txrx? AXIS1.WS.TDELAY4
#scpiCmd AXIS1.WS.TDELAY4 txrx AXIS1.WS.TDELAY4 (value)
#scpiCmd AXIS1.WS.TIRAMP? txrx? AXIS1.WS.TIRAMP
#scpiCmd AXIS1.WS.TIRAMP txrx AXIS1.WS.TIRAMP (value)
#scpiCmd AXIS1.WS.TSTANDSTILL? txrx? AXIS1.WS.TSTANDSTILL
#scpiCmd AXIS1.WS.TSTANDSTILL txrx AXIS1.WS.TSTANDSTILL (value)
#scpiCmd AXIS1.WS.VTHRESH? txrx? AXIS1.WS.VTHRESH
#scpiCmd AXIS1.WS.VTHRESH txrx AXIS1.WS.VTHRESH (value)
#scpiCmd AXIS1.ZEROACC? txrx? AXIS1.ZEROACC
#scpiCmd AXIS1.ZEROACC txrx AXIS1.ZEROACC (value)
#scpiCmd AXIS1.ZEROT? txrx? AXIS1.ZEROT
#scpiCmd AXIS1.ZEROT txrx AXIS1.ZEROT (value)
#scpiCmd AXIS1.ZEROV? txrx? AXIS1.ZEROV
#scpiCmd AXIS1.ZEROV txrx AXIS1.ZEROV (value)
#scpiCmd BRAKE1.AXIS? txrx? BRAKE1.AXIS
#scpiCmd BRAKE1.AXIS txrx BRAKE1.AXIS (value)

#scpiCmd FB1.BITS? txrx? FB1.BITS
#scpiCmd FB1.BITS txrx FB1.BITS (value)
#scpiCmd FB1.CALTHRESH? txrx? FB1.CALTHRESH
#scpiCmd FB1.CALTHRESH txrx FB1.CALTHRESH (value)
#scpiCmd FB1.CMD? txrx? FB1.CMD
#scpiCmd FB1.CMD txrx FB1.CMD (value)
#scpiCmd FB1.ENCLINES? txrx? FB1.ENCLINES
#scpiCmd FB1.ENCLINES txrx FB1.ENCLINES (value)
#scpiCmd FB1.FILT.LAG? txrx? FB1.FILT.LAG
#scpiCmd FB1.FILT.LAG txrx FB1.FILT.LAG (value)
#scpiCmd FB1.LASTIDENTIFIED? txrx? FB1.LASTIDENTIFIED
#scpiCmd FB1.LASTIDENTIFIED txrx FB1.LASTIDENTIFIED (value)
#scpiCmd FB1.LINEPITCH? txrx? FB1.LINEPITCH
#scpiCmd FB1.LINEPITCH txrx FB1.LINEPITCH (value)
#scpiCmd FB1.MECHTYPE? txrx? FB1.MECHTYPE
#scpiCmd FB1.MECHTYPE txrx FB1.MECHTYPE (value)
#scpiCmd FB1.MONITOR1.SOURCE? txrx? FB1.MONITOR1.SOURCE
#scpiCmd FB1.MONITOR1.SOURCE txrx FB1.MONITOR1.SOURCE (value)
#scpiCmd FB1.MONITOR2.SOURCE? txrx? FB1.MONITOR2.SOURCE
#scpiCmd FB1.MONITOR2.SOURCE txrx FB1.MONITOR2.SOURCE (value)
#scpiCmd FB1.MULTITURNBITS? txrx? FB1.MULTITURNBITS
#scpiCmd FB1.MULTITURNBITS txrx FB1.MULTITURNBITS (value)
#scpiCmd FB1.ON? txrx? FB1.ON
#scpiCmd FB1.ON txrx FB1.ON (value)
#scpiCmd FB1.POLES? txrx? FB1.POLES
#scpiCmd FB1.POLES txrx FB1.POLES (value)
#scpiCmd FB1.RESKTR? txrx? FB1.RESKTR
#scpiCmd FB1.RESKTR txrx FB1.RESKTR (value)
#scpiCmd FB1.RESREFPHASE? txrx? FB1.RESREFPHASE
#scpiCmd FB1.RESREFPHASE txrx FB1.RESREFPHASE (value)
#scpiCmd FB1.RID? txrx? FB1.RID
#scpiCmd FB1.RID txrx FB1.RID (value)
#scpiCmd FB1.SELECT? txrx? FB1.SELECT
#scpiCmd FB1.SELECT txrx FB1.SELECT (value)
#scpiCmd FB1.SINGLETURNBITS? txrx? FB1.SINGLETURNBITS
#scpiCmd FB1.SINGLETURNBITS txrx FB1.SINGLETURNBITS (value)
#scpiCmd FB1.TRACKINGCAL? txrx? FB1.TRACKINGCAL
#scpiCmd FB1.TRACKINGCAL txrx FB1.TRACKINGCAL (value)


;*************Below are Read Write AXIS2 parameters

#scpiCmd AXIS2.CANOPEN.ACCSCALEDENOM? txrx? AXIS2.CANOPEN.ACCSCALEDENOM
#scpiCmd AXIS2.CANOPEN.ACCSCALEDENOM txrx AXIS2.CANOPEN.ACCSCALEDENOM (value)
#scpiCmd AXIS2.CANOPEN.ACCSCALENUM? txrx? AXIS2.CANOPEN.ACCSCALENUM
#scpiCmd AXIS2.CANOPEN.ACCSCALENUM txrx AXIS2.CANOPEN.ACCSCALENUM (value)
#scpiCmd AXIS2.CANOPEN.FC1.FEED? txrx? AXIS2.CANOPEN.FC1.FEED
#scpiCmd AXIS2.CANOPEN.FC1.FEED txrx AXIS2.CANOPEN.FC1.FEED (value)
#scpiCmd AXIS2.CANOPEN.FC1.SHAFTREV? txrx? AXIS2.CANOPEN.FC1.SHAFTREV
#scpiCmd AXIS2.CANOPEN.FC1.SHAFTREV txrx AXIS2.CANOPEN.FC1.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.FC2.FEED? txrx? AXIS2.CANOPEN.FC2.FEED
#scpiCmd AXIS2.CANOPEN.FC2.FEED txrx AXIS2.CANOPEN.FC2.FEED (value)
#scpiCmd AXIS2.CANOPEN.FC2.SHAFTREV? txrx? AXIS2.CANOPEN.FC2.SHAFTREV
#scpiCmd AXIS2.CANOPEN.FC2.SHAFTREV txrx AXIS2.CANOPEN.FC2.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.FC3.FEED? txrx? AXIS2.CANOPEN.FC3.FEED
#scpiCmd AXIS2.CANOPEN.FC3.FEED txrx AXIS2.CANOPEN.FC3.FEED (value)
#scpiCmd AXIS2.CANOPEN.FC3.SHAFTREV? txrx? AXIS2.CANOPEN.FC3.SHAFTREV
#scpiCmd AXIS2.CANOPEN.FC3.SHAFTREV txrx AXIS2.CANOPEN.FC3.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.FC4.FEED? txrx? AXIS2.CANOPEN.FC4.FEED
#scpiCmd AXIS2.CANOPEN.FC4.FEED txrx AXIS2.CANOPEN.FC4.FEED (value)
#scpiCmd AXIS2.CANOPEN.FC4.SHAFTREV? txrx? AXIS2.CANOPEN.FC4.SHAFTREV
#scpiCmd AXIS2.CANOPEN.FC4.SHAFTREV txrx AXIS2.CANOPEN.FC4.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.FC5.FEED? txrx? AXIS2.CANOPEN.FC5.FEED
#scpiCmd AXIS2.CANOPEN.FC5.FEED txrx AXIS2.CANOPEN.FC5.FEED (value)
#scpiCmd AXIS2.CANOPEN.FC5.SHAFTREV? txrx? AXIS2.CANOPEN.FC5.SHAFTREV
#scpiCmd AXIS2.CANOPEN.FC5.SHAFTREV txrx AXIS2.CANOPEN.FC5.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.FCPRIMARY.FEED? txrx? AXIS2.CANOPEN.FCPRIMARY.FEED
#scpiCmd AXIS2.CANOPEN.FCPRIMARY.FEED txrx AXIS2.CANOPEN.FCPRIMARY.FEED (value)
#scpiCmd AXIS2.CANOPEN.FCPRIMARY.SHAFTREV? txrx? AXIS2.CANOPEN.FCPRIMARY.SHAFTREV
#scpiCmd AXIS2.CANOPEN.FCPRIMARY.SHAFTREV txrx AXIS2.CANOPEN.FCPRIMARY.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR1.MOTORREV? txrx? AXIS2.CANOPEN.GEAR1.MOTORREV
#scpiCmd AXIS2.CANOPEN.GEAR1.MOTORREV txrx AXIS2.CANOPEN.GEAR1.MOTORREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR1.SHAFTREV? txrx? AXIS2.CANOPEN.GEAR1.SHAFTREV
#scpiCmd AXIS2.CANOPEN.GEAR1.SHAFTREV txrx AXIS2.CANOPEN.GEAR1.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR2.MOTORREV? txrx? AXIS2.CANOPEN.GEAR2.MOTORREV
#scpiCmd AXIS2.CANOPEN.GEAR2.MOTORREV txrx AXIS2.CANOPEN.GEAR2.MOTORREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR2.SHAFTREV? txrx? AXIS2.CANOPEN.GEAR2.SHAFTREV
#scpiCmd AXIS2.CANOPEN.GEAR2.SHAFTREV txrx AXIS2.CANOPEN.GEAR2.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR3.MOTORREV? txrx? AXIS2.CANOPEN.GEAR3.MOTORREV
#scpiCmd AXIS2.CANOPEN.GEAR3.MOTORREV txrx AXIS2.CANOPEN.GEAR3.MOTORREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR3.SHAFTREV? txrx? AXIS2.CANOPEN.GEAR3.SHAFTREV
#scpiCmd AXIS2.CANOPEN.GEAR3.SHAFTREV txrx AXIS2.CANOPEN.GEAR3.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR4.MOTORREV? txrx? AXIS2.CANOPEN.GEAR4.MOTORREV
#scpiCmd AXIS2.CANOPEN.GEAR4.MOTORREV txrx AXIS2.CANOPEN.GEAR4.MOTORREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR4.SHAFTREV? txrx? AXIS2.CANOPEN.GEAR4.SHAFTREV
#scpiCmd AXIS2.CANOPEN.GEAR4.SHAFTREV txrx AXIS2.CANOPEN.GEAR4.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR5.MOTORREV? txrx? AXIS2.CANOPEN.GEAR5.MOTORREV
#scpiCmd AXIS2.CANOPEN.GEAR5.MOTORREV txrx AXIS2.CANOPEN.GEAR5.MOTORREV (value)
#scpiCmd AXIS2.CANOPEN.GEAR5.SHAFTREV? txrx? AXIS2.CANOPEN.GEAR5.SHAFTREV
#scpiCmd AXIS2.CANOPEN.GEAR5.SHAFTREV txrx AXIS2.CANOPEN.GEAR5.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.GEARPRIMARY.MOTORREV? txrx? AXIS2.CANOPEN.GEARPRIMARY.MOTORREV
#scpiCmd AXIS2.CANOPEN.GEARPRIMARY.MOTORREV txrx AXIS2.CANOPEN.GEARPRIMARY.MOTORREV (value)
#scpiCmd AXIS2.CANOPEN.GEARPRIMARY.SHAFTREV? txrx? AXIS2.CANOPEN.GEARPRIMARY.SHAFTREV
#scpiCmd AXIS2.CANOPEN.GEARPRIMARY.SHAFTREV txrx AXIS2.CANOPEN.GEARPRIMARY.SHAFTREV (value)
#scpiCmd AXIS2.CANOPEN.INTERPOLATEMODE? txrx? AXIS2.CANOPEN.INTERPOLATEMODE
#scpiCmd AXIS2.CANOPEN.INTERPOLATEMODE txrx AXIS2.CANOPEN.INTERPOLATEMODE (value)
#scpiCmd AXIS2.CANOPEN.PERRMODE? txrx? AXIS2.CANOPEN.PERRMODE
#scpiCmd AXIS2.CANOPEN.PERRMODE txrx AXIS2.CANOPEN.PERRMODE (value)
#scpiCmd AXIS2.CANOPEN.PSCALE? txrx? AXIS2.CANOPEN.PSCALE
#scpiCmd AXIS2.CANOPEN.PSCALE txrx AXIS2.CANOPEN.PSCALE (value)
#scpiCmd AXIS2.CANOPEN.STATUSEDGETIME? txrx? AXIS2.CANOPEN.STATUSEDGETIME
#scpiCmd AXIS2.CANOPEN.STATUSEDGETIME txrx AXIS2.CANOPEN.STATUSEDGETIME (value)
#scpiCmd AXIS2.CANOPEN.VELSCALEDENOM? txrx? AXIS2.CANOPEN.VELSCALEDENOM
#scpiCmd AXIS2.CANOPEN.VELSCALEDENOM txrx AXIS2.CANOPEN.VELSCALEDENOM (value)
#scpiCmd AXIS2.CANOPEN.VELSCALENUM? txrx? AXIS2.CANOPEN.VELSCALENUM
#scpiCmd AXIS2.CANOPEN.VELSCALENUM txrx AXIS2.CANOPEN.VELSCALENUM (value)
#scpiCmd AXIS2.CMDSOURCE? txrx? AXIS2.CMDSOURCE
#scpiCmd AXIS2.CMDSOURCE txrx AXIS2.CMDSOURCE (value)
#scpiCmd AXIS2.CS.DEC? txrx? AXIS2.CS.DEC
#scpiCmd AXIS2.CS.DEC txrx AXIS2.CS.DEC (value)
#scpiCmd AXIS2.DBILIMIT? txrx? AXIS2.DBILIMIT
#scpiCmd AXIS2.DBILIMIT txrx AXIS2.DBILIMIT (value)
#scpiCmd AXIS2.DIR? txrx? AXIS2.DIR
#scpiCmd AXIS2.DIR txrx AXIS2.DIR (value)
#scpiCmd AXIS2.DISMODE? txrx? AXIS2.DISMODE
#scpiCmd AXIS2.DISMODE txrx AXIS2.DISMODE (value)
#scpiCmd AXIS2.DISTO? txrx? AXIS2.DISTO
#scpiCmd AXIS2.DISTO txrx AXIS2.DISTO (value)
#scpiCmd AXIS2.ENDEFAULT? txrx? AXIS2.ENDEFAULT
#scpiCmd AXIS2.ENDEFAULT txrx AXIS2.ENDEFAULT (value)
#scpiCmd AXIS2.FAULT6004.ACTION? txrx? AXIS2.FAULT6004.ACTION
#scpiCmd AXIS2.FAULT6004.ACTION txrx AXIS2.FAULT6004.ACTION (value)
#scpiCmd AXIS2.FBUS.ACC? txrx? AXIS2.FBUS.ACC
#scpiCmd AXIS2.FBUS.ACC txrx AXIS2.FBUS.ACC (value)
#scpiCmd AXIS2.FBUS.CNTL? txrx? AXIS2.FBUS.CNTL
#scpiCmd AXIS2.FBUS.CNTL txrx AXIS2.FBUS.CNTL (value)
#scpiCmd AXIS2.FBUS.DEC? txrx? AXIS2.FBUS.DEC
#scpiCmd AXIS2.FBUS.DEC txrx AXIS2.FBUS.DEC (value)
#scpiCmd AXIS2.FBUS.IL.CMD? txrx? AXIS2.FBUS.IL.CMD
#scpiCmd AXIS2.FBUS.IL.CMD txrx AXIS2.FBUS.IL.CMD (value)
#scpiCmd AXIS2.FBUS.IL.LIMIT? txrx? AXIS2.FBUS.IL.LIMIT
#scpiCmd AXIS2.FBUS.IL.LIMIT txrx AXIS2.FBUS.IL.LIMIT (value)
#scpiCmd AXIS2.FBUS.P? txrx? AXIS2.FBUS.P
#scpiCmd AXIS2.FBUS.P txrx AXIS2.FBUS.P (value)
#scpiCmd AXIS2.FBUS.PL.CMD? txrx? AXIS2.FBUS.PL.CMD
#scpiCmd AXIS2.FBUS.PL.CMD txrx AXIS2.FBUS.PL.CMD (value)
#scpiCmd AXIS2.FBUS.PROTECTION? txrx? AXIS2.FBUS.PROTECTION
#scpiCmd AXIS2.FBUS.PROTECTION txrx AXIS2.FBUS.PROTECTION (value)
#scpiCmd AXIS2.FBUS.V? txrx? AXIS2.FBUS.V
#scpiCmd AXIS2.FBUS.V txrx AXIS2.FBUS.V (value)
#scpiCmd AXIS2.FBUS.VL.CMD? txrx? AXIS2.FBUS.VL.CMD
#scpiCmd AXIS2.FBUS.VL.CMD txrx AXIS2.FBUS.VL.CMD (value)
#scpiCmd AXIS2.GEAR.ACC? txrx? AXIS2.GEAR.ACC
#scpiCmd AXIS2.GEAR.ACC txrx AXIS2.GEAR.ACC (value)
#scpiCmd AXIS2.GEAR.DEC? txrx? AXIS2.GEAR.DEC
#scpiCmd AXIS2.GEAR.DEC txrx AXIS2.GEAR.DEC (value)
#scpiCmd AXIS2.GEAR.FBSOURCE? txrx? AXIS2.GEAR.FBSOURCE
#scpiCmd AXIS2.GEAR.FBSOURCE txrx AXIS2.GEAR.FBSOURCE (value)
#scpiCmd AXIS2.GEAR.IN? txrx? AXIS2.GEAR.IN
#scpiCmd AXIS2.GEAR.IN txrx AXIS2.GEAR.IN (value)
#scpiCmd AXIS2.GEAR.OUT? txrx? AXIS2.GEAR.OUT
#scpiCmd AXIS2.GEAR.OUT txrx AXIS2.GEAR.OUT (value)
#scpiCmd AXIS2.GUI.PARAM01? txrx? AXIS2.GUI.PARAM01
#scpiCmd AXIS2.GUI.PARAM01 txrx AXIS2.GUI.PARAM01 (value)
#scpiCmd AXIS2.GUI.PARAM02? txrx? AXIS2.GUI.PARAM02
#scpiCmd AXIS2.GUI.PARAM02 txrx AXIS2.GUI.PARAM02 (value)
#scpiCmd AXIS2.GUI.PARAM03? txrx? AXIS2.GUI.PARAM03
#scpiCmd AXIS2.GUI.PARAM03 txrx AXIS2.GUI.PARAM03 (value)
#scpiCmd AXIS2.GUI.PARAM04? txrx? AXIS2.GUI.PARAM04
#scpiCmd AXIS2.GUI.PARAM04 txrx AXIS2.GUI.PARAM04 (value)
#scpiCmd AXIS2.GUI.PARAM05? txrx? AXIS2.GUI.PARAM05
#scpiCmd AXIS2.GUI.PARAM05 txrx AXIS2.GUI.PARAM05 (value)
#scpiCmd AXIS2.GUI.PARAM06? txrx? AXIS2.GUI.PARAM06
#scpiCmd AXIS2.GUI.PARAM06 txrx AXIS2.GUI.PARAM06 (value)
#scpiCmd AXIS2.GUI.PARAM07? txrx? AXIS2.GUI.PARAM07
#scpiCmd AXIS2.GUI.PARAM07 txrx AXIS2.GUI.PARAM07 (value)
#scpiCmd AXIS2.GUI.PARAM08? txrx? AXIS2.GUI.PARAM08
#scpiCmd AXIS2.GUI.PARAM08 txrx AXIS2.GUI.PARAM08 (value)
#scpiCmd AXIS2.GUI.PARAM09? txrx? AXIS2.GUI.PARAM09
#scpiCmd AXIS2.GUI.PARAM09 txrx AXIS2.GUI.PARAM09 (value)
#scpiCmd AXIS2.GUI.PARAM10? txrx? AXIS2.GUI.PARAM10
#scpiCmd AXIS2.GUI.PARAM10 txrx AXIS2.GUI.PARAM10 (value)
#scpiCmd AXIS2.HOME.ACC? txrx? AXIS2.HOME.ACC
#scpiCmd AXIS2.HOME.ACC txrx AXIS2.HOME.ACC (value)
#scpiCmd AXIS2.HOME.AUTOMOVE? txrx? AXIS2.HOME.AUTOMOVE
#scpiCmd AXIS2.HOME.AUTOMOVE txrx AXIS2.HOME.AUTOMOVE (value)
#scpiCmd AXIS2.HOME.CREEPFACTOR? txrx? AXIS2.HOME.CREEPFACTOR
#scpiCmd AXIS2.HOME.CREEPFACTOR txrx AXIS2.HOME.CREEPFACTOR (value)
#scpiCmd AXIS2.HOME.DEC? txrx? AXIS2.HOME.DEC
#scpiCmd AXIS2.HOME.DEC txrx AXIS2.HOME.DEC (value)
#scpiCmd AXIS2.HOME.DIR? txrx? AXIS2.HOME.DIR
#scpiCmd AXIS2.HOME.DIR txrx AXIS2.HOME.DIR (value)
#scpiCmd AXIS2.HOME.DIST? txrx? AXIS2.HOME.DIST
#scpiCmd AXIS2.HOME.DIST txrx AXIS2.HOME.DIST (value)
#scpiCmd AXIS2.HOME.IPEAK? txrx? AXIS2.HOME.IPEAK
#scpiCmd AXIS2.HOME.IPEAK txrx AXIS2.HOME.IPEAK (value)
#scpiCmd AXIS2.HOME.MAXDIST? txrx? AXIS2.HOME.MAXDIST
#scpiCmd AXIS2.HOME.MAXDIST txrx AXIS2.HOME.MAXDIST (value)
#scpiCmd AXIS2.HOME.MODE? txrx? AXIS2.HOME.MODE
#scpiCmd AXIS2.HOME.MODE txrx AXIS2.HOME.MODE (value)
#scpiCmd AXIS2.HOME.MULTITURNMODE? txrx? AXIS2.HOME.MULTITURNMODE
#scpiCmd AXIS2.HOME.MULTITURNMODE txrx AXIS2.HOME.MULTITURNMODE (value)
#scpiCmd AXIS2.HOME.OFFSETUSER? txrx? AXIS2.HOME.OFFSETUSER
#scpiCmd AXIS2.HOME.OFFSETUSER txrx AXIS2.HOME.OFFSETUSER (value)
#scpiCmd AXIS2.HOME.P? txrx? AXIS2.HOME.P
#scpiCmd AXIS2.HOME.P txrx AXIS2.HOME.P (value)
#scpiCmd AXIS2.HOME.PERRTHRESH? txrx? AXIS2.HOME.PERRTHRESH
#scpiCmd AXIS2.HOME.PERRTHRESH txrx AXIS2.HOME.PERRTHRESH (value)
#scpiCmd AXIS2.HOME.SWITCHSOURCE? txrx? AXIS2.HOME.SWITCHSOURCE
#scpiCmd AXIS2.HOME.SWITCHSOURCE txrx AXIS2.HOME.SWITCHSOURCE (value)
#scpiCmd AXIS2.HOME.V? txrx? AXIS2.HOME.V
#scpiCmd AXIS2.HOME.V txrx AXIS2.HOME.V (value)
#scpiCmd AXIS2.HWEN.MODE? txrx? AXIS2.HWEN.MODE
#scpiCmd AXIS2.HWEN.MODE txrx AXIS2.HWEN.MODE (value)
#scpiCmd AXIS2.HWEN.SOURCE? txrx? AXIS2.HWEN.SOURCE
#scpiCmd AXIS2.HWEN.SOURCE txrx AXIS2.HWEN.SOURCE (value)
#scpiCmd AXIS2.HWLS.NEGSOURCE? txrx? AXIS2.HWLS.NEGSOURCE
#scpiCmd AXIS2.HWLS.NEGSOURCE txrx AXIS2.HWLS.NEGSOURCE (value)
#scpiCmd AXIS2.HWLS.POSSOURCE? txrx? AXIS2.HWLS.POSSOURCE
#scpiCmd AXIS2.HWLS.POSSOURCE txrx AXIS2.HWLS.POSSOURCE (value)
#scpiCmd AXIS2.IL.AINSCALE? txrx? AXIS2.IL.AINSCALE
#scpiCmd AXIS2.IL.AINSCALE txrx AXIS2.IL.AINSCALE (value)
#scpiCmd AXIS2.IL.AINSOURCE? txrx? AXIS2.IL.AINSOURCE
#scpiCmd AXIS2.IL.AINSOURCE txrx AXIS2.IL.AINSOURCE (value)
#scpiCmd AXIS2.IL.BW? txrx? AXIS2.IL.BW
#scpiCmd AXIS2.IL.BW txrx AXIS2.IL.BW (value)
#scpiCmd AXIS2.IL.CMDU? txrx? AXIS2.IL.CMDU
#scpiCmd AXIS2.IL.CMDU txrx AXIS2.IL.CMDU (value)
#scpiCmd AXIS2.IL.DCMDU? txrx? AXIS2.IL.DCMDU
#scpiCmd AXIS2.IL.DCMDU txrx AXIS2.IL.DCMDU (value)
#scpiCmd AXIS2.IL.DEADBAND? txrx? AXIS2.IL.DEADBAND
#scpiCmd AXIS2.IL.DEADBAND txrx AXIS2.IL.DEADBAND (value)
#scpiCmd AXIS2.IL.DISABLEFBOFFSET? txrx? AXIS2.IL.DISABLEFBOFFSET
#scpiCmd AXIS2.IL.DISABLEFBOFFSET txrx AXIS2.IL.DISABLEFBOFFSET (value)
#scpiCmd AXIS2.IL.DLIMITN? txrx? AXIS2.IL.DLIMITN
#scpiCmd AXIS2.IL.DLIMITN txrx AXIS2.IL.DLIMITN (value)
#scpiCmd AXIS2.IL.DLIMITP? txrx? AXIS2.IL.DLIMITP
#scpiCmd AXIS2.IL.DLIMITP txrx AXIS2.IL.DLIMITP (value)
#scpiCmd AXIS2.IL.FBSOURCE? txrx? AXIS2.IL.FBSOURCE
#scpiCmd AXIS2.IL.FBSOURCE txrx AXIS2.IL.FBSOURCE (value)
#scpiCmd AXIS2.IL.FOLDFTHRESHU? txrx? AXIS2.IL.FOLDFTHRESHU
#scpiCmd AXIS2.IL.FOLDFTHRESHU txrx AXIS2.IL.FOLDFTHRESHU (value)
#scpiCmd AXIS2.IL.FOLDWTHRESH? txrx? AXIS2.IL.FOLDWTHRESH
#scpiCmd AXIS2.IL.FOLDWTHRESH txrx AXIS2.IL.FOLDWTHRESH (value)
#scpiCmd AXIS2.IL.FRICTION? txrx? AXIS2.IL.FRICTION
#scpiCmd AXIS2.IL.FRICTION txrx AXIS2.IL.FRICTION (value)
#scpiCmd AXIS2.IL.INTEN? txrx? AXIS2.IL.INTEN
#scpiCmd AXIS2.IL.INTEN txrx AXIS2.IL.INTEN (value)
#scpiCmd AXIS2.IL.IUOFFSET? txrx? AXIS2.IL.IUOFFSET
#scpiCmd AXIS2.IL.IUOFFSET txrx AXIS2.IL.IUOFFSET (value)
#scpiCmd AXIS2.IL.IVOFFSET? txrx? AXIS2.IL.IVOFFSET
#scpiCmd AXIS2.IL.IVOFFSET txrx AXIS2.IL.IVOFFSET (value)
#scpiCmd AXIS2.IL.KACCFF? txrx? AXIS2.IL.KACCFF
#scpiCmd AXIS2.IL.KACCFF txrx AXIS2.IL.KACCFF (value)
#scpiCmd AXIS2.IL.KVFF? txrx? AXIS2.IL.KVFF
#scpiCmd AXIS2.IL.KVFF txrx AXIS2.IL.KVFF (value)
#scpiCmd AXIS2.IL.LIMITN? txrx? AXIS2.IL.LIMITN
#scpiCmd AXIS2.IL.LIMITN txrx AXIS2.IL.LIMITN (value)
#scpiCmd AXIS2.IL.LIMITP? txrx? AXIS2.IL.LIMITP
#scpiCmd AXIS2.IL.LIMITP txrx AXIS2.IL.LIMITP (value)
#scpiCmd AXIS2.IL.OFFSET? txrx? AXIS2.IL.OFFSET
#scpiCmd AXIS2.IL.OFFSET txrx AXIS2.IL.OFFSET (value)
#scpiCmd AXIS2.IL.PWMFREQHIGH? txrx? AXIS2.IL.PWMFREQHIGH
#scpiCmd AXIS2.IL.PWMFREQHIGH txrx AXIS2.IL.PWMFREQHIGH (value)
#scpiCmd AXIS2.IL.PWMFREQNOMINAL? txrx? AXIS2.IL.PWMFREQNOMINAL
#scpiCmd AXIS2.IL.PWMFREQNOMINAL txrx AXIS2.IL.PWMFREQNOMINAL (value)
#scpiCmd AXIS2.IL.PWMQUIET? txrx? AXIS2.IL.PWMQUIET
#scpiCmd AXIS2.IL.PWMQUIET txrx AXIS2.IL.PWMQUIET (value)
#scpiCmd AXIS2.IL.RATELIMITU? txrx? AXIS2.IL.RATELIMITU
#scpiCmd AXIS2.IL.RATELIMITU txrx AXIS2.IL.RATELIMITU (value)
#scpiCmd AXIS2.IL.VOLTBW? txrx? AXIS2.IL.VOLTBW
#scpiCmd AXIS2.IL.VOLTBW txrx AXIS2.IL.VOLTBW (value)
#scpiCmd AXIS2.IL.VOLTEN? txrx? AXIS2.IL.VOLTEN
#scpiCmd AXIS2.IL.VOLTEN txrx AXIS2.IL.VOLTEN (value)
#scpiCmd AXIS2.IL.VOLTGAIN? txrx? AXIS2.IL.VOLTGAIN
#scpiCmd AXIS2.IL.VOLTGAIN txrx AXIS2.IL.VOLTGAIN (value)
#scpiCmd AXIS2.IL2.IUOFFSET? txrx? AXIS2.IL2.IUOFFSET
#scpiCmd AXIS2.IL2.IUOFFSET txrx AXIS2.IL2.IUOFFSET (value)
#scpiCmd AXIS2.IL2.IVOFFSET? txrx? AXIS2.IL2.IVOFFSET
#scpiCmd AXIS2.IL2.IVOFFSET txrx AXIS2.IL2.IVOFFSET (value)
#scpiCmd AXIS2.JOG.ACC? txrx? AXIS2.JOG.ACC
#scpiCmd AXIS2.JOG.ACC txrx AXIS2.JOG.ACC (value)
#scpiCmd AXIS2.JOG.DEC? txrx? AXIS2.JOG.DEC
#scpiCmd AXIS2.JOG.DEC txrx AXIS2.JOG.DEC (value)
#scpiCmd AXIS2.JOG.V? txrx? AXIS2.JOG.V
#scpiCmd AXIS2.JOG.V txrx AXIS2.JOG.V (value)
#scpiCmd AXIS2.LOAD.INERTIA? txrx? AXIS2.LOAD.INERTIA
#scpiCmd AXIS2.LOAD.INERTIA txrx AXIS2.LOAD.INERTIA (value)
#scpiCmd AXIS2.MOTIONCONTROL? txrx? AXIS2.MOTIONCONTROL
#scpiCmd AXIS2.MOTIONCONTROL txrx AXIS2.MOTIONCONTROL (value)
#scpiCmd AXIS2.MOTOR.AUTOSET? txrx? AXIS2.MOTOR.AUTOSET
#scpiCmd AXIS2.MOTOR.AUTOSET txrx AXIS2.MOTOR.AUTOSET (value)
#scpiCmd AXIS2.MOTOR.BRAKE? txrx? AXIS2.MOTOR.BRAKE
#scpiCmd AXIS2.MOTOR.BRAKE txrx AXIS2.MOTOR.BRAKE (value)
#scpiCmd AXIS2.MOTOR.BRAKECONTROL? txrx? AXIS2.MOTOR.BRAKECONTROL
#scpiCmd AXIS2.MOTOR.BRAKECONTROL txrx AXIS2.MOTOR.BRAKECONTROL (value)
#scpiCmd AXIS2.MOTOR.BRAKEIMM? txrx? AXIS2.MOTOR.BRAKEIMM
#scpiCmd AXIS2.MOTOR.BRAKEIMM txrx AXIS2.MOTOR.BRAKEIMM (value)
#scpiCmd AXIS2.MOTOR.BRAKEPOWERDELAY? txrx? AXIS2.MOTOR.BRAKEPOWERDELAY
#scpiCmd AXIS2.MOTOR.BRAKEPOWERDELAY txrx AXIS2.MOTOR.BRAKEPOWERDELAY (value)
#scpiCmd AXIS2.MOTOR.BRAKEPOWERLOW? txrx? AXIS2.MOTOR.BRAKEPOWERLOW
#scpiCmd AXIS2.MOTOR.BRAKEPOWERLOW txrx AXIS2.MOTOR.BRAKEPOWERLOW (value)
#scpiCmd AXIS2.MOTOR.BRAKEPOWERSAVING? txrx? AXIS2.MOTOR.BRAKEPOWERSAVING
#scpiCmd AXIS2.MOTOR.BRAKEPOWERSAVING txrx AXIS2.MOTOR.BRAKEPOWERSAVING (value)
#scpiCmd AXIS2.MOTOR.CTF0? txrx? AXIS2.MOTOR.CTF0
#scpiCmd AXIS2.MOTOR.CTF0 txrx AXIS2.MOTOR.CTF0 (value)
#scpiCmd AXIS2.MOTOR.FIELDWEAKENING? txrx? AXIS2.MOTOR.FIELDWEAKENING
#scpiCmd AXIS2.MOTOR.FIELDWEAKENING txrx AXIS2.MOTOR.FIELDWEAKENING (value)
#scpiCmd AXIS2.MOTOR.FLUXFILTERK? txrx? AXIS2.MOTOR.FLUXFILTERK
#scpiCmd AXIS2.MOTOR.FLUXFILTERK txrx AXIS2.MOTOR.FLUXFILTERK (value)
#scpiCmd AXIS2.MOTOR.ICONT? txrx? AXIS2.MOTOR.ICONT
#scpiCmd AXIS2.MOTOR.ICONT txrx AXIS2.MOTOR.ICONT (value)
#scpiCmd AXIS2.MOTOR.IDMAX? txrx? AXIS2.MOTOR.IDMAX
#scpiCmd AXIS2.MOTOR.IDMAX txrx AXIS2.MOTOR.IDMAX (value)
#scpiCmd AXIS2.MOTOR.IMID? txrx? AXIS2.MOTOR.IMID
#scpiCmd AXIS2.MOTOR.IMID txrx AXIS2.MOTOR.IMID (value)
#scpiCmd AXIS2.MOTOR.IMTR? txrx? AXIS2.MOTOR.IMTR
#scpiCmd AXIS2.MOTOR.IMTR txrx AXIS2.MOTOR.IMTR (value)
#scpiCmd AXIS2.MOTOR.INERTIA? txrx? AXIS2.MOTOR.INERTIA
#scpiCmd AXIS2.MOTOR.INERTIA txrx AXIS2.MOTOR.INERTIA (value)
#scpiCmd AXIS2.MOTOR.IPEAK? txrx? AXIS2.MOTOR.IPEAK
#scpiCmd AXIS2.MOTOR.IPEAK txrx AXIS2.MOTOR.IPEAK (value)
#scpiCmd AXIS2.MOTOR.KE? txrx? AXIS2.MOTOR.KE
#scpiCmd AXIS2.MOTOR.KE txrx AXIS2.MOTOR.KE (value)
#scpiCmd AXIS2.MOTOR.KT? txrx? AXIS2.MOTOR.KT
#scpiCmd AXIS2.MOTOR.KT txrx AXIS2.MOTOR.KT (value)
#scpiCmd AXIS2.MOTOR.LDLL? txrx? AXIS2.MOTOR.LDLL
#scpiCmd AXIS2.MOTOR.LDLL txrx AXIS2.MOTOR.LDLL (value)
#scpiCmd AXIS2.MOTOR.LISAT? txrx? AXIS2.MOTOR.LISAT
#scpiCmd AXIS2.MOTOR.LISAT txrx AXIS2.MOTOR.LISAT (value)
#scpiCmd AXIS2.MOTOR.LQLL? txrx? AXIS2.MOTOR.LQLL
#scpiCmd AXIS2.MOTOR.LQLL txrx AXIS2.MOTOR.LQLL (value)
#scpiCmd AXIS2.MOTOR.NAME? txrx? AXIS2.MOTOR.NAME
#scpiCmd AXIS2.MOTOR.NAME txrx AXIS2.MOTOR.NAME (value)
#scpiCmd AXIS2.MOTOR.PHASE? txrx? AXIS2.MOTOR.PHASE
#scpiCmd AXIS2.MOTOR.PHASE txrx AXIS2.MOTOR.PHASE (value)
#scpiCmd AXIS2.MOTOR.PHSADVK1? txrx? AXIS2.MOTOR.PHSADVK1
#scpiCmd AXIS2.MOTOR.PHSADVK1 txrx AXIS2.MOTOR.PHSADVK1 (value)
#scpiCmd AXIS2.MOTOR.PHSADVK2? txrx? AXIS2.MOTOR.PHSADVK2
#scpiCmd AXIS2.MOTOR.PHSADVK2 txrx AXIS2.MOTOR.PHSADVK2 (value)
#scpiCmd AXIS2.MOTOR.PITCH? txrx? AXIS2.MOTOR.PITCH
#scpiCmd AXIS2.MOTOR.PITCH txrx AXIS2.MOTOR.PITCH (value)
#scpiCmd AXIS2.MOTOR.POLES? txrx? AXIS2.MOTOR.POLES
#scpiCmd AXIS2.MOTOR.POLES txrx AXIS2.MOTOR.POLES (value)
#scpiCmd AXIS2.MOTOR.R? txrx? AXIS2.MOTOR.R
#scpiCmd AXIS2.MOTOR.R txrx AXIS2.MOTOR.R (value)
#scpiCmd AXIS2.MOTOR.RSOURCE? txrx? AXIS2.MOTOR.RSOURCE
#scpiCmd AXIS2.MOTOR.RSOURCE txrx AXIS2.MOTOR.RSOURCE (value)
#scpiCmd AXIS2.MOTOR.RTYPE? txrx? AXIS2.MOTOR.RTYPE
#scpiCmd AXIS2.MOTOR.RTYPE txrx AXIS2.MOTOR.RTYPE (value)
#scpiCmd AXIS2.MOTOR.TBRAKEAPP? txrx? AXIS2.MOTOR.TBRAKEAPP
#scpiCmd AXIS2.MOTOR.TBRAKEAPP txrx AXIS2.MOTOR.TBRAKEAPP (value)
#scpiCmd AXIS2.MOTOR.TBRAKERLS? txrx? AXIS2.MOTOR.TBRAKERLS
#scpiCmd AXIS2.MOTOR.TBRAKERLS txrx AXIS2.MOTOR.TBRAKERLS (value)
#scpiCmd AXIS2.MOTOR.TBRAKETO? txrx? AXIS2.MOTOR.TBRAKETO
#scpiCmd AXIS2.MOTOR.TBRAKETO txrx AXIS2.MOTOR.TBRAKETO (value)
#scpiCmd AXIS2.MOTOR.TEMPFAULT? txrx? AXIS2.MOTOR.TEMPFAULT
#scpiCmd AXIS2.MOTOR.TEMPFAULT txrx AXIS2.MOTOR.TEMPFAULT (value)
#scpiCmd AXIS2.MOTOR.TEMPWARN? txrx? AXIS2.MOTOR.TEMPWARN
#scpiCmd AXIS2.MOTOR.TEMPWARN txrx AXIS2.MOTOR.TEMPWARN (value)
#scpiCmd AXIS2.MOTOR.TYPE? txrx? AXIS2.MOTOR.TYPE
#scpiCmd AXIS2.MOTOR.TYPE txrx AXIS2.MOTOR.TYPE (value)
#scpiCmd AXIS2.MOTOR.VMAX? txrx? AXIS2.MOTOR.VMAX
#scpiCmd AXIS2.MOTOR.VMAX txrx AXIS2.MOTOR.VMAX (value)
#scpiCmd AXIS2.MOTOR.VOLTMAX? txrx? AXIS2.MOTOR.VOLTMAX
#scpiCmd AXIS2.MOTOR.VOLTMAX txrx AXIS2.MOTOR.VOLTMAX (value)
#scpiCmd AXIS2.MOTOR.VOLTMIN? txrx? AXIS2.MOTOR.VOLTMIN
#scpiCmd AXIS2.MOTOR.VOLTMIN txrx AXIS2.MOTOR.VOLTMIN (value)
#scpiCmd AXIS2.MOTOR.VOLTRATED? txrx? AXIS2.MOTOR.VOLTRATED
#scpiCmd AXIS2.MOTOR.VOLTRATED txrx AXIS2.MOTOR.VOLTRATED (value)
#scpiCmd AXIS2.MOTOR.VRATED? txrx? AXIS2.MOTOR.VRATED
#scpiCmd AXIS2.MOTOR.VRATED txrx AXIS2.MOTOR.VRATED (value)
#scpiCmd AXIS2.MOTOR.VUTIL? txrx? AXIS2.MOTOR.VUTIL
#scpiCmd AXIS2.MOTOR.VUTIL txrx AXIS2.MOTOR.VUTIL (value)
#scpiCmd AXIS2.MT.ACC? txrx? AXIS2.MT.ACC
#scpiCmd AXIS2.MT.ACC txrx AXIS2.MT.ACC (value)
#scpiCmd AXIS2.MT.CAP? txrx? AXIS2.MT.CAP
#scpiCmd AXIS2.MT.CAP txrx AXIS2.MT.CAP (value)
#scpiCmd AXIS2.MT.CLEAR? txrx? AXIS2.MT.CLEAR
#scpiCmd AXIS2.MT.CLEAR txrx AXIS2.MT.CLEAR (value)
#scpiCmd AXIS2.MT.CNTL? txrx? AXIS2.MT.CNTL
#scpiCmd AXIS2.MT.CNTL txrx AXIS2.MT.CNTL (value)
#scpiCmd AXIS2.MT.DEC? txrx? AXIS2.MT.DEC
#scpiCmd AXIS2.MT.DEC txrx AXIS2.MT.DEC (value)
#scpiCmd AXIS2.MT.DISALLOWINTERRUPT? txrx? AXIS2.MT.DISALLOWINTERRUPT
#scpiCmd AXIS2.MT.DISALLOWINTERRUPT txrx AXIS2.MT.DISALLOWINTERRUPT (value)
#scpiCmd AXIS2.MT.DISALLOWZEROSTARTVEL? txrx? AXIS2.MT.DISALLOWZEROSTARTVEL
#scpiCmd AXIS2.MT.DISALLOWZEROSTARTVEL txrx AXIS2.MT.DISALLOWZEROSTARTVEL (value)
#scpiCmd AXIS2.MT.FEEDRATE? txrx? AXIS2.MT.FEEDRATE
#scpiCmd AXIS2.MT.FEEDRATE txrx AXIS2.MT.FEEDRATE (value)
#scpiCmd AXIS2.MT.MOVE? txrx? AXIS2.MT.MOVE
#scpiCmd AXIS2.MT.MOVE txrx AXIS2.MT.MOVE (value)
#scpiCmd AXIS2.MT.MTNEXT? txrx? AXIS2.MT.MTNEXT
#scpiCmd AXIS2.MT.MTNEXT txrx AXIS2.MT.MTNEXT (value)
#scpiCmd AXIS2.MT.P? txrx? AXIS2.MT.P
#scpiCmd AXIS2.MT.P txrx AXIS2.MT.P (value)
#scpiCmd AXIS2.MT.TNEXT? txrx? AXIS2.MT.TNEXT
#scpiCmd AXIS2.MT.TNEXT txrx AXIS2.MT.TNEXT (value)
#scpiCmd AXIS2.MT.TRANSITION? txrx? AXIS2.MT.TRANSITION
#scpiCmd AXIS2.MT.TRANSITION txrx AXIS2.MT.TRANSITION (value)
#scpiCmd AXIS2.MT.TYPE? txrx? AXIS2.MT.TYPE
#scpiCmd AXIS2.MT.TYPE txrx AXIS2.MT.TYPE (value)
#scpiCmd AXIS2.MT.V? txrx? AXIS2.MT.V
#scpiCmd AXIS2.MT.V txrx AXIS2.MT.V (value)
#scpiCmd AXIS2.NAME? txrx? AXIS2.NAME
#scpiCmd AXIS2.NAME txrx AXIS2.NAME (value)
#scpiCmd AXIS2.OBS.BW? txrx? AXIS2.OBS.BW
#scpiCmd AXIS2.OBS.BW txrx AXIS2.OBS.BW (value)
#scpiCmd AXIS2.OBS.ENABLE? txrx? AXIS2.OBS.ENABLE
#scpiCmd AXIS2.OBS.ENABLE txrx AXIS2.OBS.ENABLE (value)
#scpiCmd AXIS2.OBS.KO? txrx? AXIS2.OBS.KO
#scpiCmd AXIS2.OBS.KO txrx AXIS2.OBS.KO (value)
#scpiCmd AXIS2.OPMODE? txrx? AXIS2.OPMODE
#scpiCmd AXIS2.OPMODE txrx AXIS2.OPMODE (value)
#scpiCmd AXIS2.PL.AINSCALE? txrx? AXIS2.PL.AINSCALE
#scpiCmd AXIS2.PL.AINSCALE txrx AXIS2.PL.AINSCALE (value)
#scpiCmd AXIS2.PL.AINSOURCE? txrx? AXIS2.PL.AINSOURCE
#scpiCmd AXIS2.PL.AINSOURCE txrx AXIS2.PL.AINSOURCE (value)
#scpiCmd AXIS2.PL.ERRFTHRESH? txrx? AXIS2.PL.ERRFTHRESH
#scpiCmd AXIS2.PL.ERRFTHRESH txrx AXIS2.PL.ERRFTHRESH (value)
#scpiCmd AXIS2.PL.ERRWTHRESH? txrx? AXIS2.PL.ERRWTHRESH
#scpiCmd AXIS2.PL.ERRWTHRESH txrx AXIS2.PL.ERRWTHRESH (value)
#scpiCmd AXIS2.PL.FBSOURCE? txrx? AXIS2.PL.FBSOURCE
#scpiCmd AXIS2.PL.FBSOURCE txrx AXIS2.PL.FBSOURCE (value)
#scpiCmd AXIS2.PL.FILTERTIME? txrx? AXIS2.PL.FILTERTIME
#scpiCmd AXIS2.PL.FILTERTIME txrx AXIS2.PL.FILTERTIME (value)
#scpiCmd AXIS2.PL.INTOUTMAX? txrx? AXIS2.PL.INTOUTMAX
#scpiCmd AXIS2.PL.INTOUTMAX txrx AXIS2.PL.INTOUTMAX (value)
#scpiCmd AXIS2.PL.KFB? txrx? AXIS2.PL.KFB
#scpiCmd AXIS2.PL.KFB txrx AXIS2.PL.KFB (value)
#scpiCmd AXIS2.PL.KI? txrx? AXIS2.PL.KI
#scpiCmd AXIS2.PL.KI txrx AXIS2.PL.KI (value)
#scpiCmd AXIS2.PL.KITHRESH? txrx? AXIS2.PL.KITHRESH
#scpiCmd AXIS2.PL.KITHRESH txrx AXIS2.PL.KITHRESH (value)
#scpiCmd AXIS2.PL.KP? txrx? AXIS2.PL.KP
#scpiCmd AXIS2.PL.KP txrx AXIS2.PL.KP (value)
#scpiCmd AXIS2.PL.MODP1? txrx? AXIS2.PL.MODP1
#scpiCmd AXIS2.PL.MODP1 txrx AXIS2.PL.MODP1 (value)
#scpiCmd AXIS2.PL.MODP2? txrx? AXIS2.PL.MODP2
#scpiCmd AXIS2.PL.MODP2 txrx AXIS2.PL.MODP2 (value)
#scpiCmd AXIS2.PL.MODPDIR? txrx? AXIS2.PL.MODPDIR
#scpiCmd AXIS2.PL.MODPDIR txrx AXIS2.PL.MODPDIR (value)
#scpiCmd AXIS2.PL.MODPEN? txrx? AXIS2.PL.MODPEN
#scpiCmd AXIS2.PL.MODPEN txrx AXIS2.PL.MODPEN (value)
#scpiCmd AXIS2.PL.OFFSET? txrx? AXIS2.PL.OFFSET
#scpiCmd AXIS2.PL.OFFSET txrx AXIS2.PL.OFFSET (value)
#scpiCmd AXIS2.SAFE.STO.REPORTFAULT? txrx? AXIS2.SAFE.STO.REPORTFAULT
#scpiCmd AXIS2.SAFE.STO.REPORTFAULT txrx AXIS2.SAFE.STO.REPORTFAULT (value)
#scpiCmd AXIS2.SETTLE.P? txrx? AXIS2.SETTLE.P
#scpiCmd AXIS2.SETTLE.P txrx AXIS2.SETTLE.P (value)
#scpiCmd AXIS2.SETTLE.V? txrx? AXIS2.SETTLE.V
#scpiCmd AXIS2.SETTLE.V txrx AXIS2.SETTLE.V (value)
#scpiCmd AXIS2.SIM.KDVFREQ? txrx? AXIS2.SIM.KDVFREQ
#scpiCmd AXIS2.SIM.KDVFREQ txrx AXIS2.SIM.KDVFREQ (value)
#scpiCmd AXIS2.SIM.RUNDISABLED? txrx? AXIS2.SIM.RUNDISABLED
#scpiCmd AXIS2.SIM.RUNDISABLED txrx AXIS2.SIM.RUNDISABLED (value)
#scpiCmd AXIS2.SM.ACC? txrx? AXIS2.SM.ACC
#scpiCmd AXIS2.SM.ACC txrx AXIS2.SM.ACC (value)
#scpiCmd AXIS2.SM.DEC? txrx? AXIS2.SM.DEC
#scpiCmd AXIS2.SM.DEC txrx AXIS2.SM.DEC (value)
#scpiCmd AXIS2.SM.I1? txrx? AXIS2.SM.I1
#scpiCmd AXIS2.SM.I1 txrx AXIS2.SM.I1 (value)
#scpiCmd AXIS2.SM.I2? txrx? AXIS2.SM.I2
#scpiCmd AXIS2.SM.I2 txrx AXIS2.SM.I2 (value)
#scpiCmd AXIS2.SM.MODE? txrx? AXIS2.SM.MODE
#scpiCmd AXIS2.SM.MODE txrx AXIS2.SM.MODE (value)
#scpiCmd AXIS2.SM.T1? txrx? AXIS2.SM.T1
#scpiCmd AXIS2.SM.T1 txrx AXIS2.SM.T1 (value)
#scpiCmd AXIS2.SM.T2? txrx? AXIS2.SM.T2
#scpiCmd AXIS2.SM.T2 txrx AXIS2.SM.T2 (value)
#scpiCmd AXIS2.SM.V1? txrx? AXIS2.SM.V1
#scpiCmd AXIS2.SM.V1 txrx AXIS2.SM.V1 (value)
#scpiCmd AXIS2.SM.V2? txrx? AXIS2.SM.V2
#scpiCmd AXIS2.SM.V2 txrx AXIS2.SM.V2 (value)
#scpiCmd AXIS2.SWLS.EN? txrx? AXIS2.SWLS.EN
#scpiCmd AXIS2.SWLS.EN txrx AXIS2.SWLS.EN (value)
#scpiCmd AXIS2.SWLS.LIMIT0? txrx? AXIS2.SWLS.LIMIT0
#scpiCmd AXIS2.SWLS.LIMIT0 txrx AXIS2.SWLS.LIMIT0 (value)
#scpiCmd AXIS2.SWLS.LIMIT1? txrx? AXIS2.SWLS.LIMIT1
#scpiCmd AXIS2.SWLS.LIMIT1 txrx AXIS2.SWLS.LIMIT1 (value)
#scpiCmd AXIS2.UNIT.ACCLINEAR? txrx? AXIS2.UNIT.ACCLINEAR
#scpiCmd AXIS2.UNIT.ACCLINEAR txrx AXIS2.UNIT.ACCLINEAR (value)
#scpiCmd AXIS2.UNIT.ACCROTARY? txrx? AXIS2.UNIT.ACCROTARY
#scpiCmd AXIS2.UNIT.ACCROTARY txrx AXIS2.UNIT.ACCROTARY (value)
#scpiCmd AXIS2.UNIT.LABEL? txrx? AXIS2.UNIT.LABEL
#scpiCmd AXIS2.UNIT.LABEL txrx AXIS2.UNIT.LABEL (value)
#scpiCmd AXIS2.UNIT.PIN? txrx? AXIS2.UNIT.PIN
#scpiCmd AXIS2.UNIT.PIN txrx AXIS2.UNIT.PIN (value)
#scpiCmd AXIS2.UNIT.PLINEAR? txrx? AXIS2.UNIT.PLINEAR
#scpiCmd AXIS2.UNIT.PLINEAR txrx AXIS2.UNIT.PLINEAR (value)
#scpiCmd AXIS2.UNIT.POUT? txrx? AXIS2.UNIT.POUT
#scpiCmd AXIS2.UNIT.POUT txrx AXIS2.UNIT.POUT (value)
#scpiCmd AXIS2.UNIT.PROTARY? txrx? AXIS2.UNIT.PROTARY
#scpiCmd AXIS2.UNIT.PROTARY txrx AXIS2.UNIT.PROTARY (value)
#scpiCmd AXIS2.UNIT.VLINEAR? txrx? AXIS2.UNIT.VLINEAR
#scpiCmd AXIS2.UNIT.VLINEAR txrx AXIS2.UNIT.VLINEAR (value)
#scpiCmd AXIS2.UNIT.VROTARY? txrx? AXIS2.UNIT.VROTARY
#scpiCmd AXIS2.UNIT.VROTARY txrx AXIS2.UNIT.VROTARY (value)
#scpiCmd AXIS2.VL.AINACC? txrx? AXIS2.VL.AINACC
#scpiCmd AXIS2.VL.AINACC txrx AXIS2.VL.AINACC (value)
#scpiCmd AXIS2.VL.AINDEC? txrx? AXIS2.VL.AINDEC
#scpiCmd AXIS2.VL.AINDEC txrx AXIS2.VL.AINDEC (value)
#scpiCmd AXIS2.VL.AINSCALE? txrx? AXIS2.VL.AINSCALE
#scpiCmd AXIS2.VL.AINSCALE txrx AXIS2.VL.AINSCALE (value)
#scpiCmd AXIS2.VL.AINSOURCE? txrx? AXIS2.VL.AINSOURCE
#scpiCmd AXIS2.VL.AINSOURCE txrx AXIS2.VL.AINSOURCE (value)
#scpiCmd AXIS2.VL.ARPF1? txrx? AXIS2.VL.ARPF1
#scpiCmd AXIS2.VL.ARPF1 txrx AXIS2.VL.ARPF1 (value)
#scpiCmd AXIS2.VL.ARPF2? txrx? AXIS2.VL.ARPF2
#scpiCmd AXIS2.VL.ARPF2 txrx AXIS2.VL.ARPF2 (value)
#scpiCmd AXIS2.VL.ARPF3? txrx? AXIS2.VL.ARPF3
#scpiCmd AXIS2.VL.ARPF3 txrx AXIS2.VL.ARPF3 (value)
#scpiCmd AXIS2.VL.ARPF4? txrx? AXIS2.VL.ARPF4
#scpiCmd AXIS2.VL.ARPF4 txrx AXIS2.VL.ARPF4 (value)
#scpiCmd AXIS2.VL.ARPQ1? txrx? AXIS2.VL.ARPQ1
#scpiCmd AXIS2.VL.ARPQ1 txrx AXIS2.VL.ARPQ1 (value)
#scpiCmd AXIS2.VL.ARPQ2? txrx? AXIS2.VL.ARPQ2
#scpiCmd AXIS2.VL.ARPQ2 txrx AXIS2.VL.ARPQ2 (value)
#scpiCmd AXIS2.VL.ARPQ3? txrx? AXIS2.VL.ARPQ3
#scpiCmd AXIS2.VL.ARPQ3 txrx AXIS2.VL.ARPQ3 (value)
#scpiCmd AXIS2.VL.ARPQ4? txrx? AXIS2.VL.ARPQ4
#scpiCmd AXIS2.VL.ARPQ4 txrx AXIS2.VL.ARPQ4 (value)
#scpiCmd AXIS2.VL.ARTYPE1? txrx? AXIS2.VL.ARTYPE1
#scpiCmd AXIS2.VL.ARTYPE1 txrx AXIS2.VL.ARTYPE1 (value)
#scpiCmd AXIS2.VL.ARTYPE2? txrx? AXIS2.VL.ARTYPE2
#scpiCmd AXIS2.VL.ARTYPE2 txrx AXIS2.VL.ARTYPE2 (value)
#scpiCmd AXIS2.VL.ARTYPE3? txrx? AXIS2.VL.ARTYPE3
#scpiCmd AXIS2.VL.ARTYPE3 txrx AXIS2.VL.ARTYPE3 (value)
#scpiCmd AXIS2.VL.ARTYPE4? txrx? AXIS2.VL.ARTYPE4
#scpiCmd AXIS2.VL.ARTYPE4 txrx AXIS2.VL.ARTYPE4 (value)
#scpiCmd AXIS2.VL.ARZF1? txrx? AXIS2.VL.ARZF1
#scpiCmd AXIS2.VL.ARZF1 txrx AXIS2.VL.ARZF1 (value)
#scpiCmd AXIS2.VL.ARZF2? txrx? AXIS2.VL.ARZF2
#scpiCmd AXIS2.VL.ARZF2 txrx AXIS2.VL.ARZF2 (value)
#scpiCmd AXIS2.VL.ARZF3? txrx? AXIS2.VL.ARZF3
#scpiCmd AXIS2.VL.ARZF3 txrx AXIS2.VL.ARZF3 (value)
#scpiCmd AXIS2.VL.ARZF4? txrx? AXIS2.VL.ARZF4
#scpiCmd AXIS2.VL.ARZF4 txrx AXIS2.VL.ARZF4 (value)
#scpiCmd AXIS2.VL.ARZQ1? txrx? AXIS2.VL.ARZQ1
#scpiCmd AXIS2.VL.ARZQ1 txrx AXIS2.VL.ARZQ1 (value)
#scpiCmd AXIS2.VL.ARZQ2? txrx? AXIS2.VL.ARZQ2
#scpiCmd AXIS2.VL.ARZQ2 txrx AXIS2.VL.ARZQ2 (value)
#scpiCmd AXIS2.VL.ARZQ3? txrx? AXIS2.VL.ARZQ3
#scpiCmd AXIS2.VL.ARZQ3 txrx AXIS2.VL.ARZQ3 (value)
#scpiCmd AXIS2.VL.ARZQ4? txrx? AXIS2.VL.ARZQ4
#scpiCmd AXIS2.VL.ARZQ4 txrx AXIS2.VL.ARZQ4 (value)
#scpiCmd AXIS2.VL.BUSFF? txrx? AXIS2.VL.BUSFF
#scpiCmd AXIS2.VL.BUSFF txrx AXIS2.VL.BUSFF (value)
#scpiCmd AXIS2.VL.CMDU? txrx? AXIS2.VL.CMDU
#scpiCmd AXIS2.VL.CMDU txrx AXIS2.VL.CMDU (value)
#scpiCmd AXIS2.VL.FBSOURCE? txrx? AXIS2.VL.FBSOURCE
#scpiCmd AXIS2.VL.FBSOURCE txrx AXIS2.VL.FBSOURCE (value)
#scpiCmd AXIS2.VL.KFB? txrx? AXIS2.VL.KFB
#scpiCmd AXIS2.VL.KFB txrx AXIS2.VL.KFB (value)
#scpiCmd AXIS2.VL.KI? txrx? AXIS2.VL.KI
#scpiCmd AXIS2.VL.KI txrx AXIS2.VL.KI (value)
#scpiCmd AXIS2.VL.KIMODE? txrx? AXIS2.VL.KIMODE
#scpiCmd AXIS2.VL.KIMODE txrx AXIS2.VL.KIMODE (value)
#scpiCmd AXIS2.VL.KP? txrx? AXIS2.VL.KP
#scpiCmd AXIS2.VL.KP txrx AXIS2.VL.KP (value)
#scpiCmd AXIS2.VL.KVFF? txrx? AXIS2.VL.KVFF
#scpiCmd AXIS2.VL.KVFF txrx AXIS2.VL.KVFF (value)
#scpiCmd AXIS2.VL.LIMITN? txrx? AXIS2.VL.LIMITN
#scpiCmd AXIS2.VL.LIMITN txrx AXIS2.VL.LIMITN (value)
#scpiCmd AXIS2.VL.LIMITP? txrx? AXIS2.VL.LIMITP
#scpiCmd AXIS2.VL.LIMITP txrx AXIS2.VL.LIMITP (value)
#scpiCmd AXIS2.VL.LMJR? txrx? AXIS2.VL.LMJR
#scpiCmd AXIS2.VL.LMJR txrx AXIS2.VL.LMJR (value)
#scpiCmd AXIS2.VL.THRESH? txrx? AXIS2.VL.THRESH
#scpiCmd AXIS2.VL.THRESH txrx AXIS2.VL.THRESH (value)
#scpiCmd AXIS2.WS.CHECKMODE? txrx? AXIS2.WS.CHECKMODE
#scpiCmd AXIS2.WS.CHECKMODE txrx AXIS2.WS.CHECKMODE (value)
#scpiCmd AXIS2.WS.CHECKT? txrx? AXIS2.WS.CHECKT
#scpiCmd AXIS2.WS.CHECKT txrx AXIS2.WS.CHECKT (value)
#scpiCmd AXIS2.WS.CHECKV? txrx? AXIS2.WS.CHECKV
#scpiCmd AXIS2.WS.CHECKV txrx AXIS2.WS.CHECKV (value)
#scpiCmd AXIS2.WS.DISTMAX? txrx? AXIS2.WS.DISTMAX
#scpiCmd AXIS2.WS.DISTMAX txrx AXIS2.WS.DISTMAX (value)
#scpiCmd AXIS2.WS.DISTMIN? txrx? AXIS2.WS.DISTMIN
#scpiCmd AXIS2.WS.DISTMIN txrx AXIS2.WS.DISTMIN (value)
#scpiCmd AXIS2.WS.FREQ? txrx? AXIS2.WS.FREQ
#scpiCmd AXIS2.WS.FREQ txrx AXIS2.WS.FREQ (value)
#scpiCmd AXIS2.WS.IMAX? txrx? AXIS2.WS.IMAX
#scpiCmd AXIS2.WS.IMAX txrx AXIS2.WS.IMAX (value)
#scpiCmd AXIS2.WS.MODE? txrx? AXIS2.WS.MODE
#scpiCmd AXIS2.WS.MODE txrx AXIS2.WS.MODE (value)
#scpiCmd AXIS2.WS.NUMLOOPS? txrx? AXIS2.WS.NUMLOOPS
#scpiCmd AXIS2.WS.NUMLOOPS txrx AXIS2.WS.NUMLOOPS (value)
#scpiCmd AXIS2.WS.T? txrx? AXIS2.WS.T
#scpiCmd AXIS2.WS.T txrx AXIS2.WS.T (value)
#scpiCmd AXIS2.WS.TDELAY1? txrx? AXIS2.WS.TDELAY1
#scpiCmd AXIS2.WS.TDELAY1 txrx AXIS2.WS.TDELAY1 (value)
#scpiCmd AXIS2.WS.TDELAY2? txrx? AXIS2.WS.TDELAY2
#scpiCmd AXIS2.WS.TDELAY2 txrx AXIS2.WS.TDELAY2 (value)
#scpiCmd AXIS2.WS.TDELAY3? txrx? AXIS2.WS.TDELAY3
#scpiCmd AXIS2.WS.TDELAY3 txrx AXIS2.WS.TDELAY3 (value)
#scpiCmd AXIS2.WS.TDELAY4? txrx? AXIS2.WS.TDELAY4
#scpiCmd AXIS2.WS.TDELAY4 txrx AXIS2.WS.TDELAY4 (value)
#scpiCmd AXIS2.WS.TIRAMP? txrx? AXIS2.WS.TIRAMP
#scpiCmd AXIS2.WS.TIRAMP txrx AXIS2.WS.TIRAMP (value)
#scpiCmd AXIS2.WS.TSTANDSTILL? txrx? AXIS2.WS.TSTANDSTILL
#scpiCmd AXIS2.WS.TSTANDSTILL txrx AXIS2.WS.TSTANDSTILL (value)
#scpiCmd AXIS2.WS.VTHRESH? txrx? AXIS2.WS.VTHRESH
#scpiCmd AXIS2.WS.VTHRESH txrx AXIS2.WS.VTHRESH (value)
#scpiCmd AXIS2.ZEROACC? txrx? AXIS2.ZEROACC
#scpiCmd AXIS2.ZEROACC txrx AXIS2.ZEROACC (value)
#scpiCmd AXIS2.ZEROT? txrx? AXIS2.ZEROT
#scpiCmd AXIS2.ZEROT txrx AXIS2.ZEROT (value)
#scpiCmd AXIS2.ZEROV? txrx? AXIS2.ZEROV
#scpiCmd AXIS2.ZEROV txrx AXIS2.ZEROV (value)

#scpiCmd BRAKE2.AXIS? txrx? BRAKE2.AXIS
#scpiCmd BRAKE2.AXIS txrx BRAKE2.AXIS (value)

#scpiCmd FB2.BITS? txrx? FB2.BITS
#scpiCmd FB2.BITS txrx FB2.BITS (value)
#scpiCmd FB2.CALTHRESH? txrx? FB2.CALTHRESH
#scpiCmd FB2.CALTHRESH txrx FB2.CALTHRESH (value)
#scpiCmd FB2.CMD? txrx? FB2.CMD
#scpiCmd FB2.CMD txrx FB2.CMD (value)
#scpiCmd FB2.ENCLINES? txrx? FB2.ENCLINES
#scpiCmd FB2.ENCLINES txrx FB2.ENCLINES (value)
#scpiCmd FB2.FILT.LAG? txrx? FB2.FILT.LAG
#scpiCmd FB2.FILT.LAG txrx FB2.FILT.LAG (value)
#scpiCmd FB2.LASTIDENTIFIED? txrx? FB2.LASTIDENTIFIED
#scpiCmd FB2.LASTIDENTIFIED txrx FB2.LASTIDENTIFIED (value)
#scpiCmd FB2.LINEPITCH? txrx? FB2.LINEPITCH
#scpiCmd FB2.LINEPITCH txrx FB2.LINEPITCH (value)
#scpiCmd FB2.MECHTYPE? txrx? FB2.MECHTYPE
#scpiCmd FB2.MECHTYPE txrx FB2.MECHTYPE (value)
#scpiCmd FB2.MONITOR1.SOURCE? txrx? FB2.MONITOR1.SOURCE
#scpiCmd FB2.MONITOR1.SOURCE txrx FB2.MONITOR1.SOURCE (value)
#scpiCmd FB2.MONITOR2.SOURCE? txrx? FB2.MONITOR2.SOURCE
#scpiCmd FB2.MONITOR2.SOURCE txrx FB2.MONITOR2.SOURCE (value)
#scpiCmd FB2.MULTITURNBITS? txrx? FB2.MULTITURNBITS
#scpiCmd FB2.MULTITURNBITS txrx FB2.MULTITURNBITS (value)
#scpiCmd FB2.ON? txrx? FB2.ON
#scpiCmd FB2.ON txrx FB2.ON (value)
#scpiCmd FB2.POLES? txrx? FB2.POLES
#scpiCmd FB2.POLES txrx FB2.POLES (value)
#scpiCmd FB2.RESKTR? txrx? FB2.RESKTR
#scpiCmd FB2.RESKTR txrx FB2.RESKTR (value)
#scpiCmd FB2.RESREFPHASE? txrx? FB2.RESREFPHASE
#scpiCmd FB2.RESREFPHASE txrx FB2.RESREFPHASE (value)
#scpiCmd FB2.RID? txrx? FB2.RID
#scpiCmd FB2.RID txrx FB2.RID (value)
#scpiCmd FB2.SELECT? txrx? FB2.SELECT
#scpiCmd FB2.SELECT txrx FB2.SELECT (value)
#scpiCmd FB2.SINGLETURNBITS? txrx? FB2.SINGLETURNBITS
#scpiCmd FB2.SINGLETURNBITS txrx FB2.SINGLETURNBITS (value)
#scpiCmd FB2.TRACKINGCAL? txrx? FB2.TRACKINGCAL
#scpiCmd FB2.TRACKINGCAL txrx FB2.TRACKINGCAL (value)

; Accept this delay when reading values (seconds)
#readingDelay 2


;************   Programming Interface **********

#interfaceType Servo

#interface setAxis1Enable AXIS1.EN
#interface getAxis1Enable AXIS1.ACTIVE?

#interface setAxis2Enable AXIS2.EN
#interface getAxis2Enable AXIS2.ACTIVE?

#interface getFaults DRV.FAULTS?
:string:

#interface setClrFaults DRV.CLRFAULTS

#interface setCH1Src REC.CH1 (value)
#interface getCH1Src REC.CH1?
:string:

#interface setCH2Src REC.CH2 (value)
#interface getCH2Src REC.CH2?
:string:

#interface setCH3Src REC.CH3 (value)
#interface getCH3Src REC.CH3?
:string:

#interface setCH4Src REC.CH4 (value)
#interface getCH4Src REC.CH4?
:string:

#interface setCH5Src REC.CH5 (value)
#interface getCH5Src REC.CH5?
:string:

#interface setCH6Src REC.CH6 (value)
#interface getCH6Src REC.CH6?
:string:

; Enable/Disable Popup.

#cmdSetup buttonsOn Axis1_Enable
:string:
:read: AXIS1.ACTIVE?
:readmath: getElement("AXIS1.DIS AXIS1.EN",value)
:write: txrx #
:tip: Disable (Off) or Enable (On)
:color: (0,255,0)
:updatedelayed: 0.1
:updatealloff:
:update: Faults
Off AXIS1.DIS
On AXIS1.EN
:tip: Make sure setup is safe for motor to move before enabling.

#cmdSetup buttonsOn Axis2_Enable
:string:
:read: AXIS1.ACTIVE?
:readmath: getElement("AXIS2.DIS AXIS2.EN",value)
:write: txrx #
:tip: Disable (Off) or Enable (On)
:color: (0,255,0)
:updatedelayed: 0.1
:updatealloff:
:update: Faults
Off AXIS2.DIS
On AXIS2.EN
:tip: Make sure setup is safe for motor to move before enabling.

#cmdSetup info Faults
:string:
:read: DRV.FAULTS?
:layout:
:tip: You can clear faults with DRV.CLRFAULTS command.

#cmdSetup button Disable_Clear_Faults
:write: DRV.DIS; DRV.CLRFAULTS
:update: Faults
:tip: This button will disable output and attempt to clear faults.

#cmdSetup text CH1
;:read: REC.TRIG; getDefCH1?
:read: REC.CH1?
:write: REC.CH1 (value)
:tip: Define CH1 value to log like AXIS1.PL.FB, AXIS1.IL.FB, VBUS.VALUE, or many others.

#cmdSetup text CH2
:read: REC.TRIG; getDefCH2?
:write: REC.CH2 (value)
:tip: Define CH2 value to log like AXIS1.PL.FB, AXIS1.IL.FB, VBUS.VALUE, or many others.

#cmdSetup text CH3
:read: REC.TRIG; getDefCH3?
:write: REC.CH3 (value)
:tip: Define CH3 value to log like AXIS1.PL.FB, AXIS1.IL.FB, VBUS.VALUE, or many others.

#cmdSetup text CH4
:read: REC.TRIG; getDefCH4?
:write: REC.CH4 (value)
:tip: Define CH4 value to log like AXIS1.PL.FB, AXIS1.IL.FB, VBUS.VALUE, or many others.

#cmdSetup text CH5
:read: REC.TRIG; getDefCH5?
:write: REC.CH5 (value)
:tip: Define CH5 value to log like AXIS1.PL.FB, AXIS1.IL.FB, VBUS.VALUE, or many others.

#cmdSetup text CH6
:read: REC.TRIG; getDefCH6?
:write: REC.CH6 (value)
:tip: Define CH6 value to log like AXIS1.PL.FB, AXIS1.IL.FB, VBUS.VALUE, or many others.
